Lecture overview -- Keyboard shortcut: 'u'  Previous page: Name binding constructs [Section] -- Keyboard shortcut: 'p'  Next page: The equivalent meaning of <span>let</span> -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Alphabetic index  Help page about these notes  Course home    Introduction to Functional Programming in Scheme - slide 36 : 49

The let name binding expression

A name binding expression establishes a number of local name bindings in order to ease the evaluation of a body expression

(let ((n<sub>1</sub> e<sub>1</sub>) ... (n<sub>k</sub> e<sub>k</sub>)) body-expr)