do
special-form
(do form*)
Evaluates the forms and returns the value of the last form. The body
of a function is an implicit do block. Macros such as when and loop
generate do blocks.
The let and var special forms declare lexical or dynamic variables.
make-html > (do
(let x 3)
(let y 2)
(+ x y))
it: 5