2cc47c557b
This commit updates the benchmark results for various examples. The benchmark times and repeat counts have been adjusted to reflect current performance characteristics.
13 lines
195 B
Plaintext
13 lines
195 B
Plaintext
;; Fibonacci Recursive
|
|
;; Benchmark: 45.9us
|
|
;; Benchmark-Repeat: 45
|
|
;; Output: 55
|
|
(do
|
|
(def fib (fn [n]
|
|
(if (< n 2)
|
|
n
|
|
(+ (fib (- n 1)) (fib (- n 2))))))
|
|
|
|
(fib 10)
|
|
)
|