2cc47c557b
This commit updates the benchmark results for various examples. The benchmark times and repeat counts have been adjusted to reflect current performance characteristics.
13 lines
286 B
Plaintext
13 lines
286 B
Plaintext
;; Benchmark: 1.3ms
|
|
;; Benchmark-Repeat: 3
|
|
;; Tests the effect of record inlining and field lookup optimization
|
|
;; Output: 10000
|
|
(do
|
|
(def config {:start 0 :limit 10000 :step 2})
|
|
(def x (.start config))
|
|
|
|
(while (< x (.limit config))
|
|
(assign x (+ x (.step config))))
|
|
x
|
|
)
|