SketchyLISP Reference |
Copyright (C) 2007 Nils M Holm |
<<[let*] | [Index] | [list-ref]>> |
Conformance: R5RS Scheme
Purpose: Create a list from arguments.
Arguments:
X... - data
Implementation:
(define (list . x) x)
Example:
(list 'a 'b 'c) => (a b c)
See also:
caar,
string,
vector.
<<[let*] | [Index] | [list-ref]>> |