| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
receive (4.6 Binding constructs), or the R5Rs procedure
call-with-values described below.
See also 10.6 srfi-11 - Let-values.
(values 1 2) => 1 and 2 |
(call-with-values (lambda () (values 1 2)) cons) => (1 . 2) |