a18642fd7b
Add `Output` comments to the example files to reflect the actual output of the programs. This helps with verifying correctness and understanding example behavior.
14 lines
235 B
Plaintext
14 lines
235 B
Plaintext
;; Benchmark: 93ns
|
|
;; Benchmark-Repeat: 21646
|
|
;; Output: 13
|
|
(do
|
|
(macro wrap [f] `(fn [x] (~f x)))
|
|
|
|
(def add1 (fn [x] (+ x 1)))
|
|
(def add2 (fn [x] (+ x 2)))
|
|
|
|
(def w1 (wrap add1))
|
|
(def w2 (wrap add2))
|
|
|
|
(w1 (w2 10)))
|