c03b2af770
This commit updates the benchmark numbers in various example files. The changes reflect recent performance optimizations or adjustments to the benchmarking environment.
13 lines
193 B
Plaintext
13 lines
193 B
Plaintext
;; Closure Scope Test
|
|
;; Benchmark: 436ns
|
|
;; Benchmark-Repeat: 4610
|
|
;; Output: 15
|
|
(do
|
|
(def make-adder (fn [x]
|
|
(fn [y] (+ x y))))
|
|
|
|
(def add5 (make-adder 5))
|
|
|
|
(add5 10)
|
|
)
|