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
219 B
Plaintext
10 lines
219 B
Plaintext
;; Benchmark: 237ns
|
|
;; Benchmark-Repeat: 8394
|
|
;; 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]))
|