Play audio slide show -- Keyboard shortcut: 'x'  Lecture overview -- Keyboard shortcut: 'u'  Previous page: Name binding constructs [Section] -- Keyboard shortcut: 'p'  Next page: The equivalent meaning of <kbd>let</kbd> -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home      Name binding, Recursion, Iteration, and Continuations - slide 2 : 42

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 ((n1 e1)
      ...
      (nk ek))
  body-expr)