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
140 B
Plaintext
10 lines
140 B
Plaintext
;; Benchmark: 339ns
|
|
;; Benchmark-Repeat: 6100
|
|
;; Output: 5
|
|
(do
|
|
(def y 1)
|
|
(macro m1 [x] `(do (def y 10) (assign y 4)))
|
|
(m1 8)
|
|
(+ y (m1 8))
|
|
)
|