jan tolenaar / kiezellisp / index-of-everything

Name

cons?

Usage

builtin-function

Syntax

(cons? expr)

Description

Returns true if expr is a non-empty list.

make-html > (cons? 1)
it: false
make-html > (cons? null)
it: false
make-html > (cons? '(1 1))
it: true