first
builtin-function
(first seq) (first predicate seq)
(first seq)
(first predicate seq)
Returns the first (matching) element in a seq; or null if there is no first element.
seq
null
make-html > (first '(1 2 3 4 5 6)) it: 1 make-html > (first even? '(1 2 3 4 5 6)) it: 2