fixed reassignment, starting work on if statements

This commit is contained in:
SpookyDervish
2025-10-14 20:02:22 +11:00
parent 655e5d1d12
commit 48e7488a63
6 changed files with 45 additions and 15 deletions

View File

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