list
creates a new list
Usage:
(list form*)
Will create a new list whose elements are the evaluated forms provided, or return the empty list if no forms are provided.
An Example
(define x "hello")
(define y "there")
(list x y)