started work on assignment operators

This commit is contained in:
SpookyDervish
2025-10-17 06:21:33 +11:00
parent 1d6c3db5e4
commit 24fcbb3fb7
10 changed files with 229 additions and 137 deletions

View File

@@ -1,7 +1,7 @@
main = Func(): Int {
for (x: Int = 1; x <= 20; x = x + 1;) {
$print("i = %i\n", x)
}
a: Int = 10;
return x;
a += 1;
return a;
}