Code Select
(filter (fn (x) (> x 10))
(map inc '(1 2 3 4)))
could then be written as
Code Select
(and (map inc '(1 2 3 4))
(filter (fn (x) (> x 10)) $it))
or even
Code Select
(and '(1 2 3 4)
(map inc $it)
(filter (fn (x) (> x 10)) $it))