Cons():
List Constructioncons()
: List Construction (Binding Form)cons
(h, t) Specification: Binds l to a list with head element h and tail list t.
Complexity: O(1)
Note: This operation is more efficient than the otherwise equivalent form
l=
Cons
(h, t)