8 lines
210 B
Common Lisp
8 lines
210 B
Common Lisp
: (setq A (1 2 3) B '(a b c))
|
|
-> (a b c)
|
|
: (append A B) # Append lists in 'A' and 'B'
|
|
-> (1 2 3 a b c)
|
|
: A
|
|
-> (1 2 3)
|
|
: B
|
|
-> (a b c) # Arguments are not modified
|