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 and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home  Lecture 1 - Page 39 : 49
Programming Paradigms
Introduction to Functional Programming in Scheme
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))))