;; Closure Scope Test ;; Benchmark: 600ns ;; Output: 15 (do (def make-adder (fn [x] (fn [y] (+ x y)))) (def add5 (make-adder 5)) (add5 10) )