c03b2af770
This commit updates the benchmark numbers in various example files. The changes reflect recent performance optimizations or adjustments to the benchmarking environment.
8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
;; Benchmark: 129ns
|
|
;; Benchmark-Repeat: 15458
|
|
;; Output: 42
|
|
(do
|
|
(def f (fn [a] (fn [b] (fn [c] (+ a (+ b c))))))
|
|
(((f 10) 12) 20)
|
|
)
|