Files
RustAst/examples/currying.myc
T

8 lines
145 B
Plaintext

;; Benchmark: 55ns
;; Benchmark-Repeat: 36160
;; Output: 42
(do
(def f (fn [a] (fn [b] (fn [c] (+ a (+ b c))))))
(((f 10) 12) 20)
)