Append!

(append! list1 list2) -> list

Destructively performs append.

Example:

>> (define b '(1 2 3))
:: #f
>> (append! b '(4))
:: (1 2 3 4)
>> b
:: (1 2 3 4)