1331aabbe1
This commit updates benchmark values in several example files to reflect minor performance variations. It also includes adjustments to integration and unit tests to align with recent changes in the type checking and VM logic, specifically concerning closures and TCO handling.
11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
;; Benchmark: 2.8ms
|
|
;; Output: "done"
|
|
(do
|
|
(def count_down (fn [n]
|
|
(if (< n 1)
|
|
"done"
|
|
(count_down (- n 1)))))
|
|
|
|
(count_down 10000)
|
|
)
|