9222fb5bc8
The benchmark results in several example files have been updated. This commit reflects slight variations in performance measurements for various test cases, including closure scope, data structures, destructuring, higher-order functions, macros, and tuple operations.
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
;; Benchmark: 277ns
|
|
;; Benchmark-Repeat: 7185
|
|
;; 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]))
|