Name: Anonymous 2013-08-15 19:02
I wish languages let you choose infix, postfix, or prefix freely.
(infix 3 + 5 * 2) becomes (+ 3 (* 5 2))
[1,2,3].map(x => x * 2).filter(x => x > 2).forEach(print)
forEach(print, filter(map([1,2,3], x => x * 2), x => x > 2))