;; Output: 42 (do (def f (fn [a] (fn [b] (fn [c] (+ a (+ b c)))))) (((f 10) 12) 20) )