Files
RustAst/examples/design-flaw.myc
T
Michael Schimmel 961168f3b6 Refactor analyzer to return impurity
The `Analyzer` is now responsible for determining the purity of `Define`
bindings. Previously, this responsibility was left to the caller.

Added a new example `design-flaw.myc` to test this change.
Updated `soa_series.myc` due to the purity change.
2026-03-10 16:13:39 +01:00

8 lines
46 B
Plaintext

(do
(do
(def x "hh")
)
(print x)
)