9 lines
210 B
Text
9 lines
210 B
Text
|
|
: (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
|