Welcome to the CHICKEN Scheme pasting service
values-case added by klovett on Thu Apr 30 00:11:51 2026
;; macro to dispatch on # of returned values (define-syntax values-case (syntax-rules () ((values-case expr (formals . body) ...) (call-with-values (lambda () expr) (case-lambda (formals . body) ...)))))