|
|
The let name binding expression |
| In a name binding construct a number of names are bound to values. The name bindings can be used
in the body, which must be an expression when we are working in the functional paradigm.
There are a number of variations in the way the
names can refer to each other mutually. We will meet some of them on the following pages. |
| The names n 1 ... n k are bound to the respective values e 1 ... e k , and the body expression is evaluated
relative to these name bindings. Free names in the body expression are bound to names defined
in the surround of the let construct. |
|