mpl/conformance/corpus/076_shadowing/program.mpl
2026-07-10 00:00:10 -04:00

4 lines
55 B
Text

x ≜ 1;
f ≜ λy: (x ≜ 5; x + y);
✎ f(0);
✎ x;