096f166153
These changes update the benchmark numbers and repeat counts in the example files. The benchmark results have slightly varied, and these updates reflect the most recent measurements.
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
;; Benchmark: 162ns
|
|
;; Benchmark-Repeat: 12339
|
|
;; Nested Macro and Arithmetic example
|
|
;; Output: 81
|
|
|
|
(do
|
|
(macro square [x] `(* ~x ~x))
|
|
(macro power4 [x] `(square (square ~x)))
|
|
(power4 3))
|