t3x.org / sketchy / library / list.html
SketchyLISP
Reference
  Copyright (C) 2006
Nils M Holm

list

Conformance: R5RS

Purpose: Create a list from arguments.

Arguments:
X... - expressions

Implementation:

(define (list . x) x)

Example:

(list 'a 'b 'c) 
=> (a b c)

See also:
caar, string.