try
special-form
(try &body forms)
Exception handling.
make-html > (try
(+ 3 hello)
(catch (ex)
(print-line ex))
(finally (print-line 111)))
#<LispException Message="Undefined variable: make-html::hello">
111