Lecture overview -- Keyboard shortcut: 'u'  Previous page: The equivalent meaning of <span>let</span> -- Keyboard shortcut: 'p'  Next page: The <span>let*</span> name binding construct -- 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 38 : 49

The let* name binding construct
It is often useful to be able to use previous name bindings in a let construct, which binds several names
(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)