when-let
macro
(when-let (sym test) &body forms)
If test is true, binds the test value to the variable sym, then evaluates forms as a do-block; else null.
test
sym
forms
do
null
make-html > (when-let (x true) (print-line "yes") x) yes it: true