Files
RustAst/examples/optimizer_purity.myc
T
Michael Schimmel 0ed52a811d Update benchmark metadata
This commit updates the benchmark metadata in several example files. The
benchmark runs and repeat counts have been slightly adjusted due to
optimizations or minor variations in execution.
2026-02-22 01:37:00 +01:00

7 lines
116 B
Plaintext

;; Benchmark: 503ns
;; Benchmark-Repeat: 3987
(do
(def PI 3.1415)
(def area (fn [x] (* PI x)))
(area 10)
)