regtest.l 97 B

123
  1. (def xp (fn x y (print (list "x,y" x y))))
  2. (def foo (fn a b c d e f (xp e f)))
  3. (foo 1 2 3 4 5 6)