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

list

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.