d1b8d03604
This commit updates the benchmark and repeat counts for various example files. These changes reflect potential performance improvements or variations observed during testing.
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
;; Benchmark: 194ns
|
|
;; Benchmark-Repeat: 10337
|
|
;; Nested Macro and Arithmetic example
|
|
;; Output: 81
|
|
|
|
(do
|
|
(macro square [x] `(* ~x ~x))
|
|
(macro power4 [x] `(square (square ~x)))
|
|
(power4 3))
|