c03b2af770
This commit updates the benchmark numbers in various example files. The changes reflect recent performance optimizations or adjustments to the benchmarking environment.
10 lines
218 B
Plaintext
10 lines
218 B
Plaintext
;; Benchmark: 128ns
|
|
;; Benchmark-Repeat: 15586
|
|
;; Classic "unless" macro example
|
|
;; Demonstrates simple template substitution.
|
|
;; Output: 42
|
|
|
|
(do
|
|
(macro unless [c b] `(if ~c ... ~b))
|
|
(unless false 42))
|