[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

named let

This page is part of the web mail archives of SRFI 71 from before July 7th, 2015. The new archives for SRFI 71 contain all messages, not just those from before July 7th, 2015.



I'd like to know why multiple-values syntax can not be used in `named let'.

(srfi-let lp ((a 1) (b 2) (c 3)) (list a b c))	---> (1 2 3)
(srfi-let lp ((a b c (values 1 2 3))) (list a b c))  ---> bad syntax error

-- 
Joo ChurlSoo