Files
RustAst/examples/macro_hygiene.myc
T
Michael Schimmel 9222fb5bc8 Update benchmark results
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.
2026-02-21 15:16:36 +01:00

10 lines
140 B
Plaintext

;; Benchmark: 350ns
;; Benchmark-Repeat: 5767
;; Output: 5
(do
(def y 1)
(macro m1 [x] `(do (def y 10) (assign y 4)))
(m1 8)
(+ y (m1 8))
)