Common Lisp中的apply和appendappend
Lisp中的append就是把多个list合并成一个list。如:
> (append function 'p1 'p2 'p3) == (append function (list* 'p1 'p2 'p3))