Takes any number of lists and appends them together as one list
(append [list ...])
Arguments
A list.
Return Values
append returns nil.
A list with all arguments appended to the original. If no arguments are supplied,Examples
Command: (append '(a b) '(c d))
(A B C D)
Command: (append '((a)(b)) '((c)(d)))
((A) (B) (C) (D))