(let binding (expression1 ...)) -> varies
This creates and binds one or more local variables, that exist only within the bounds of the (let ...).
Examples:
>> (let ((x 3) (y 14)) (* x y)) :: 42