- (receive (NAME ...) VALUEEXP BODY ...)syntax
- (receive (NAME1 ... NAMEn . NAMEn+1) VALUEEXP BODY ...)syntax
- (receive NAME VALUEEXP BODY ...)syntax
- (receive VALUEEXP)syntax
SRFI-8. Syntactic sugar for call-with-values. Binds variables to the result values of VALUEEXP and evaluates BODY ..., similar define-values but lexically scoped.
(receive VALUEEXP) is equivalent to (receive _ VALUEEXP _). This shortened form is not described by SRFI-8.