Files
RustAst/examples/optimizer_purity.myc
T
2026-02-22 00:43:39 +01:00

7 lines
116 B
Plaintext

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