vector
creates a new vector
Usage:
(vector form*)
Create a new vector whose elements are the evaluated forms provided. This function is no different from the vector literal syntax except that it can be treated in a first-class fashion.
An Example
(define x "hello")
(define y "there")
(vector x y)