cisco / ChezScheme

Chez Scheme
Apache License 2.0
6.95k stars 982 forks source link

Is it a bug? #688

Closed aarwoo closed 1 year ago

aarwoo commented 1 year ago

image

soegaard commented 1 year ago

No.

(lambda y f 'x)

evaluates to a function with a variable number of arguments. When it is called, the variable y is bound to the list of actual arguments. The body of the functions is (begin f 'x) which is equivalent to just'x`

aarwoo commented 1 year ago

Thanks.