Lecture overview -- Keyboard shortcut: 'u'  Previous page: The <span>let*</span> name binding construct -- Keyboard shortcut: 'p'  Next page: An example with <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 39 : 49

The let* name binding construct
We show how to implement let* with let
(let* ((n<sub>1</sub> e<sub>1</sub>) ... (n<sub>i-1</sub> e<sub>i-1</sub>) (n<sub>i</sub> e<sub>i</sub>) ... (n<sub>k</sub> e<sub>k</sub>)) body-expr)
(let ((n<sub>1</sub> e<sub>1</sub>)) ... (let ((n<sub>i-1</sub> e<sub>i-1</sub>)) (let ((n<sub>i</sub> e<sub>i</sub>)) ... (let((n<sub>k</sub> e<sub>k</sub>)) body-expr))))