PPT Slide
The let and let* forms implement local variables.
initializes variables parm1, parm2, …. , parmm to the values init1, init2, …. , initm and these variables are bound to the values in the scope of the let, which includes form1 …. formn .
( let ( ( x 10 ) ) ( print ( 1+ x ) ) ) 11
( let ( ( x 10 ) ( y ( * x x ) ) ) 25
( let* ( ( x 10 ) ( y ( * x x ) ) )