EMA-XPS Online


COPY-TREE

COPY-TREE
=========

syntax: (copy-tree <list>)

This function copies the list and all lists, which
are included in the list.

example:       >(copy-tree '(1 2 (3 4) 5))
               (1 2 (3 4) 5)


EMA-XPS Online