list
builtin-function
(list &rest items)
Returns a list containing the given items.
make-html > (list 1 2 3) it: (1 2 3) make-html > (list 'a 'b 'c) it: (a b c) make-html > '(a b c) it: (a b c)