Allegro Common Lisp is a programming language created in 1986 by John Foderaro.
(defun foo (x) (loop for y in-sequence x collect (1+ y))) (foo '(1 2 3)) => (2 3 4) (foo #(1 2 3)) => (2 3 4)