EMA-XPS Online


APPEND

APPEND
======

syntax: (append {<list> ...})

This function returns a list, which contains all
elements of the <list>s. The last <list> will not
be copied!

example:       >(append '(1 2 3) '(4 5 6))
               (1 2 3 4 5 6)


EMA-XPS Online