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

LET loses



Shouldn't (LET ((() (mumble)) (A 1)) (list A)) expand into
 ((LAMBDA (() A) (LIST A)) (MUMBLE) 1)
instead of the buggy
 ((LAMBDA (() A) (LIST A)) () 1)