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
191 B
Plaintext
11 lines
191 B
Plaintext
;; Higher-Order Function Example
|
|
;; Benchmark: 90ns
|
|
;; Benchmark-Repeat: 21671
|
|
;; Output: 25
|
|
(do
|
|
(def apply (fn [f x] (f x)))
|
|
(def square (fn [x] (* x x)))
|
|
|
|
(apply square 5)
|
|
)
|