d1b8d03604
This commit updates the benchmark and repeat counts for various example files. These changes reflect potential performance improvements or variations observed during testing.
8 lines
145 B
Plaintext
8 lines
145 B
Plaintext
;; Benchmark: 87ns
|
|
;; Benchmark-Repeat: 23196
|
|
;; Output: 42
|
|
(do
|
|
(def f (fn [a] (fn [b] (fn [c] (+ a (+ b c))))))
|
|
(((f 10) 12) 20)
|
|
)
|