096f166153
These changes update the benchmark numbers and repeat counts in the example files. The benchmark results have slightly varied, and these updates reflect the most recent measurements.
13 lines
193 B
Plaintext
13 lines
193 B
Plaintext
;; Closure Scope Test
|
|
;; Benchmark: 391ns
|
|
;; Benchmark-Repeat: 5155
|
|
;; Output: 15
|
|
(do
|
|
(def make-adder (fn [x]
|
|
(fn [y] (+ x y))))
|
|
|
|
(def add5 (make-adder 5))
|
|
|
|
(add5 10)
|
|
)
|