list
(list obj1 obj2 ... objn)
Description:
Creates a list from the supplied objects
Arguments:
obj1 -- scheme objects
Returns: list
Examples:
(list 'fred 1 "fred") => (fred 1 "fred")
Back to index