d1b8d03604
This commit updates the benchmark and repeat counts for various example files. These changes reflect potential performance improvements or variations observed during testing.
11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
;; Benchmark: 2.0ms
|
|
;; Output: "done"
|
|
(do
|
|
(def count_down (fn [n]
|
|
(if (< n 1)
|
|
"done"
|
|
(count_down (- n 1)))))
|
|
|
|
(count_down 10000)
|
|
)
|