;; Higher-Order Function Example ;; Benchmark: 112ns ;; Benchmark-Repeat: 17678 (do (def apply (fn [f x] (f x))) (def square (fn [x] (* x x))) (assert-eq 25 (apply square 5)) )