2cc47c557b
This commit updates the benchmark results for various examples. The benchmark times and repeat counts have been adjusted to reflect current performance characteristics.
11 lines
184 B
Plaintext
11 lines
184 B
Plaintext
;; Benchmark: 2.2us
|
|
;; Benchmark-Repeat: 935
|
|
;; Output: 120
|
|
(do
|
|
(def factorial (fn [n acc]
|
|
(if (= n 0)
|
|
acc
|
|
(again (- n 1) (* acc n)))))
|
|
|
|
(factorial 5 1))
|