c03b2af770
This commit updates the benchmark numbers in various example files. The changes reflect recent performance optimizations or adjustments to the benchmarking environment.
11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
;; Benchmark: 2.8ms
|
|
;; Output: "done"
|
|
(do
|
|
(def count_down (fn [n]
|
|
(if (< n 1)
|
|
"done"
|
|
(count_down (- n 1)))))
|
|
|
|
(count_down 10000)
|
|
)
|