0ed52a811d
This commit updates the benchmark metadata in several example files. The benchmark runs and repeat counts have been slightly adjusted due to optimizations or minor variations in execution.
8 lines
145 B
Plaintext
8 lines
145 B
Plaintext
;; Benchmark: 1.1us
|
|
;; Benchmark-Repeat: 1848
|
|
;; Output: 42
|
|
(do
|
|
(def f (fn [a] (fn [b] (fn [c] (+ a (+ b c))))))
|
|
(((f 10) 12) 20)
|
|
)
|