EMA-XPS Online


CONS

CONS
====

syntax: (cons <object> <list>)

This function produces a list, which includes the
object as the first element and the list as the
remaining elements. In Babylon-Lisp the second
argument can only be a list.

example:       >(cons "string" ())
               ("string")


EMA-XPS Online