jan tolenaar / kiezellisp / index-of-everything

Name

list

Usage

builtin-function

Syntax

(list &rest items)

Description

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)