096f166153
These changes update the benchmark numbers and repeat counts in the example files. The benchmark results have slightly varied, and these updates reflect the most recent measurements.
13 lines
286 B
Plaintext
13 lines
286 B
Plaintext
;; Benchmark: 1.2ms
|
|
;; 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
|
|
)
|