or
special-form/function
(or expr*)
Returns the value of the first argument that evaluates as true. Otherwise
returns the value of the last argument. As a special form or evaluates as
few arguments as possible.
make-html > (or ""
"default")
it: "default"
make-html > (or "abc"
"default")
it: "abc"