0ed52a811d
This commit updates the benchmark metadata in several example files. The benchmark runs and repeat counts have been slightly adjusted due to optimizations or minor variations in execution.
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
;; Benchmark: 259ns
|
|
;; Benchmark-Repeat: 7947
|
|
;; Macro Splicing example
|
|
;; Demonstrates unrolling a list into another list.
|
|
;; Output: [0 1 2 3 4]
|
|
|
|
(do
|
|
(macro wrap [items] `[0 ~@items 4])
|
|
(wrap [1 2 3]))
|