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