chickadee » scheme » list

list obj ...procedure

Returns a newly allocated list of its arguments.

(list 'a (+ 3 4) 'c)                    ===>  (a 7 c)
(list)                                  ===>  ()