Name binding, Recursion, Iteration, and Continuations
- slide 3 : 42
The equivalent meaning of
let
We will here understand the underlying, equivalent form of a
let
name binding construct
(let ((n
1
e
1
) ... (n
k
e
k
)) body-expr)
(
(lambda (n
1
... n
k
) body-expr)
e
1
... e
k
)