7e54b3f443
The benchmark button is only enabled in release builds. If clicked, it will trigger the benchmark suite.
9 lines
114 B
Plaintext
9 lines
114 B
Plaintext
;; Benchmark: 300ns
|
|
;; Output: 5
|
|
(do
|
|
(def y 1)
|
|
(macro m1 [x] `(do (def y 10) (assign y 4)))
|
|
(m1 8)
|
|
(+ y (m1 8))
|
|
)
|