9222fb5bc8
The benchmark results in several example files have been updated. This commit reflects slight variations in performance measurements for various test cases, including closure scope, data structures, destructuring, higher-order functions, macros, and tuple operations.
10 lines
206 B
Plaintext
10 lines
206 B
Plaintext
;; Benchmark: 376ns
|
|
;; Benchmark-Repeat: 5359
|
|
;; Nested Macro and Arithmetic example
|
|
;; Output: 81
|
|
|
|
(do
|
|
(macro square [x] `(* ~x ~x))
|
|
(macro power4 [x] `(square (square ~x)))
|
|
(power4 3))
|