Functions Documentation
View Function Edit Function
Name list
Syntax (list i1 i2 ... in) -> list
Argument List i1: expression you want to be an element of the list.
i2 ... in: Expressions you want to be elements of the list
Returns A list of all the expressions passed as arguments.
Category list
Description Makes a list of the expressions in the order of the arguments.
Example
(list 1 2 3 4)
Returns the list (1 2 3 4)
(block (vari)
	(setq vari 5)
	(list vari "list")
	)

Returns the list (5 list)
Comment A nice helpful function for making lists.