identity
builtin-function
(identity a)
Returns its single argument or a list of its multiple arguments.
make-html > (identity 1) it: 1 make-html > (identity) it: null make-html > (identity 1 2 3) it: (1 2 3)