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.
11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
;; Benchmark: 2.9ms
|
|
;; Output: "done"
|
|
(do
|
|
(def count_down (fn [n]
|
|
(if (< n 1)
|
|
"done"
|
|
(count_down (- n 1)))))
|
|
|
|
(count_down 10000)
|
|
)
|