Re: RECEIVE vs. LET-VALUES John David Stone (02 Jul 1999 19:08 UTC)
Re: RECEIVE vs. LET-VALUES Lars Thomas Hansen (02 Jul 1999 19:47 UTC)
Re: RECEIVE vs. LET-VALUES sperber@xxxxxx (03 Jul 1999 14:10 UTC)

Re: RECEIVE vs. LET-VALUES John David Stone 02 Jul 1999 19:10 UTC

        So, expanding RECEIVE, the LET-VALUES version is really

            (define-syntax let-values
              (syntax-rules ()
                ((let-values (formals expression) body ...)
                 (call-with-values (lambda () expression)
                                   (lambda formals body ...)))))

that is, exactly like RECEIVE except that every LET-VALUES-expression must
have an additional pair of parentheses around the <formals> <expression>
part.

        The arguments for the LET-VALUES syntax are compatibility with
MzScheme and, I suppose, a sense that bracketing the binding part separates
it more cleanly from the body of the expression.  The argument against it
is that the parentheses around the binding part are pure sugar, always
present and never needed to resolve any ambiguity.

--
======  John David Stone - Lecturer in Computer Science and Philosophy  =====
==============  Manager of the Mathematics Local-Area Network  ==============
==============  Grinnell College - Grinnell, Iowa 50112 - USA  ==============
========  xxxxxx@cs.grinnell.edu - http://www.cs.grinnell.edu/~stone/  =======