096f166153
These changes update the benchmark numbers and repeat counts in the example files. The benchmark results have slightly varied, and these updates reflect the most recent measurements.
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
;; Benchmark: 200ns
|
|
;; Benchmark-Repeat: 9985
|
|
;; 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]))
|