[parenscript-devel] Discrepancy in MULTIPLE-VALUE-BIND
Daniel Gackle
danielgackle at gmail.com
Tue Feb 23 04:43:28 UTC 2010
Looks like our implementation doesn't match CL's after all.
(blah2-call) evaluates to (2 5) in Common Lisp, but [2, undefined] in
Parenscript.
(defun blah1 ()
(values 2 5))
(defun blah2 ()
(blah1))
(defun blah2-call ()
(multiple-value-bind (a b) (blah2) (list a b)))
Daniel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/parenscript-devel/attachments/20100222/818d16f7/attachment.html>
More information about the parenscript-devel
mailing list