Andreas Bernauer writes:
> stktrc wrote:
> > But from where did the first (seemingly limited) let-values come?
> There is no such definition:
At least in the CVS version it's there, you have to open sfri-11
apparently.
-bri
zot:~/scsh/scsh $ ./go
Welcome to scsh 0.7 (CVS version)
Type ,? for help.
> ,open srfi-11
Load structure srfi-11 (y/n)? y
[srfi-11 /home/b/bdc/scsh/scsh/scheme/srfi/srfi-11.scm]
> (let-values (((a b) (values 1 2))) (values a b))
; 2 values
1
2
> ,bound? let-values
Bound to #(#{Type :syntax #f #f} #{Location 8954 let-values srfi-11}
#{Transform let-values})
> ,exit
zot:~/scsh/scsh $
|