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
185 B
Plaintext
11 lines
185 B
Plaintext
;; Benchmark: 1.8us
|
|
;; Benchmark-Repeat: 1122
|
|
;; Output: 120
|
|
(do
|
|
(def factorial (fn [n acc]
|
|
(if (= n 0)
|
|
acc
|
|
(again (- n 1) (* acc n)))))
|
|
|
|
(factorial 5 1))
|