SketchyLISP Reference |
Copyright (C) 2007 Nils M Holm |
<<[unique] | [Index] | [zero?]>> |
Conformance: R5RS Scheme
Purpose: Create a vector from arguments.
Arguments:
X... - data
Implementation:
(define (vector . x) (list->vector x))
Example:
(vector 'a 'b 'c) => #(a b c)
<<[unique] | [Index] | [zero?]>> |