2cc47c557b
This commit updates the benchmark results for various examples. The benchmark times and repeat counts have been adjusted to reflect current performance characteristics.
10 lines
141 B
Plaintext
10 lines
141 B
Plaintext
;; Benchmark: 192ns
|
|
;; Benchmark-Repeat: 10538
|
|
;; Output: 5
|
|
(do
|
|
(def y 1)
|
|
(macro m1 [x] `(do (def y 10) (assign y 4)))
|
|
(m1 8)
|
|
(+ y (m1 8))
|
|
)
|