AST works for variable reassignment

kinda coded horribly tho lol
This commit is contained in:
SpookyDervish
2025-10-14 19:22:59 +11:00
parent 5741a48e73
commit 655e5d1d12
7 changed files with 132 additions and 39 deletions

View File

@@ -1,4 +1,7 @@
main = Func(): Int {
x: Int = 123;
return x + 5;
x: Int = 0;
x = x * 2;
return x;
}