d1b8d03604
This commit updates the benchmark and repeat counts for various example files. These changes reflect potential performance improvements or variations observed during testing.
13 lines
195 B
Plaintext
13 lines
195 B
Plaintext
;; Fibonacci Recursive
|
|
;; Benchmark: 32.8us
|
|
;; Benchmark-Repeat: 62
|
|
;; Output: 55
|
|
(do
|
|
(def fib (fn [n]
|
|
(if (< n 2)
|
|
n
|
|
(+ (fib (- n 1)) (fib (- n 2))))))
|
|
|
|
(fib 10)
|
|
)
|