Update optimizer_purity.myc

This commit is contained in:
Michael Schimmel
2026-02-22 10:41:54 +01:00
parent 3142e64bbd
commit b54a449369
+4 -5
View File
@@ -1,7 +1,6 @@
;; Benchmark: 503ns ;; Benchmark: 503ns
;; Benchmark-Repeat: 3987 ;; Benchmark-Repeat: 3987
(do (do
(def PI 3.1415) (def area (fn [x] (* PI x)))
(def area (fn [x] (* PI x))) (area 10)
(area 10) )
)