lambda
(
lambda
(
NAME
NAME
...)
EXPRESSION
)
A
lambda
form can be used in a
letrec
,
let
, or
let*
expression to define a name for a function. Using the
lambda
form in this way is analogous to using it with
define
.
Intermediate Student Language