Files
RustAst/examples/optimizer_purity.myc
T
Michael Schimmel a18642fd7b Update example output comments
Add `Output` comments to the example files to reflect the actual output
of the programs. This helps with verifying correctness and understanding
example behavior.
2026-03-02 23:46:44 +01:00

8 lines
124 B
Plaintext

;; Benchmark: 92ns
;; Benchmark-Repeat: 21507
;; Output: 31.41592653589793
(do
(def area (fn [x] (* PI x)))
(area 10)
)