list?
builtin-function
(list? expr)
Returns true if expr is a list or null.
expr
null
make-html > (list? '(1 2 3)) it: true make-html > (list? (range 10)) it: true make-html > (list? null) it: true