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
217 B
Plaintext
10 lines
217 B
Plaintext
;; Benchmark: 87ns
|
|
;; Benchmark-Repeat: 23129
|
|
;; Classic "unless" macro example
|
|
;; Demonstrates simple template substitution.
|
|
;; Output: 42
|
|
|
|
(do
|
|
(macro unless [c b] `(if ~c ... ~b))
|
|
(unless false 42))
|