Files
Plasma/tests/test.pla
SpookyDervish 655e5d1d12 AST works for variable reassignment
kinda coded horribly tho lol
2025-10-14 19:22:59 +11:00

7 lines
60 B
Plaintext

main = Func(): Int {
x: Int = 0;
x = x * 2;
return x;
}