Adding var declaration and set statement handling

This commit is contained in:
Clément Grennerat
2026-03-02 21:01:45 +01:00
parent 13cb53a437
commit 11ccd45663
4 changed files with 117 additions and 41 deletions
+7 -2
View File
@@ -1,5 +1,10 @@
int main() {
int z;
int x;
x=42;
return x;
x = 56;
int y;
x = y;
y = 10;
z = x;
return z;
}