when
macro
(when test &body forms)
If test is true, then evaluates forms as a do-block; else null.
test
forms
do
null
make-html > (when (odd? 123) (print-line "odd") 456) odd it: 456