Files
RustAst/examples/macro_unless.myc
T
Michael Schimmel 2cc47c557b Update benchmark results
This commit updates the benchmark results for various examples. The
benchmark times and repeat counts have been adjusted to reflect current
performance characteristics.
2026-02-28 14:27:54 +01:00

10 lines
217 B
Plaintext

;; Benchmark: 92ns
;; Benchmark-Repeat: 21913
;; Classic "unless" macro example
;; Demonstrates simple template substitution.
;; Output: 42
(do
(macro unless [c b] `(if ~c ... ~b))
(unless false 42))