and
special-form/function
(and expr*)
Returns the value of the first argument that evaluates as false. Otherwise
returns the value of the last argument. As a special form and evaluates as
few arguments as possible.
make-html > (let n 12)
it: n
make-html > (and (number? n)
(< n 13))
it: true