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

vector

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)

See also:
list, string.