096f166153
These changes update the benchmark numbers and repeat counts in the example files. The benchmark results have slightly varied, and these updates reflect the most recent measurements.
8 lines
145 B
Plaintext
8 lines
145 B
Plaintext
;; Benchmark: 93ns
|
|
;; Benchmark-Repeat: 21799
|
|
;; Output: 42
|
|
(do
|
|
(def f (fn [a] (fn [b] (fn [c] (+ a (+ b c))))))
|
|
(((f 10) 12) 20)
|
|
)
|