2cc47c557b
This commit updates the benchmark results for various examples. The benchmark times and repeat counts have been adjusted to reflect current performance characteristics.
8 lines
145 B
Plaintext
8 lines
145 B
Plaintext
;; Benchmark: 91ns
|
|
;; Benchmark-Repeat: 21971
|
|
;; Output: 42
|
|
(do
|
|
(def f (fn [a] (fn [b] (fn [c] (+ a (+ b c))))))
|
|
(((f 10) 12) 20)
|
|
)
|