cons?
builtin-function
(cons? expr)
Returns true if expr is a non-empty list.
expr
make-html > (cons? 1) it: false make-html > (cons? null) it: false make-html > (cons? '(1 1)) it: true