; Adds a list into an empty list. Because of the sequential processing, this also essentially produces a reversed version of the original list. (into () '(1 2 3 4)) => (4 3 2 1)
; Adds a list into an empty list. Because of the sequential processing, this also essentially produces a reversed version of the original list. (into () '(1 2 3 4)) => (4 3 2 1)