Local bindings.
Goal
Bind city and units, then print a total.
(let ((city "Nairobi") (units 12))
(print city)
(print units))(let ((units 8) (price 40))
(print (* units price)))(let ((a 5) (b 4))
(print (+ a b)))(let ((cities '(Nakuru Eldoret)))
(print (car cities)))