2cc47c557b
This commit updates the benchmark results for various examples. The benchmark times and repeat counts have been adjusted to reflect current performance characteristics.
10 lines
217 B
Plaintext
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))
|