SketchyLISP Reference |
Copyright (C) 2006 Nils M Holm |
<<[let*] | [Index] | [list-ref]>> |
Conformance: R5RS
Purpose: Create a list from arguments.
Arguments:
X... - expressions
Implementation:
(define (list . x) x)
Example:
(list 'a 'b 'c) => (a b c)
<<[let*] | [Index] | [list-ref]>> |