Adding var declaration and set statement handling
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
int main() {
|
||||
int z;
|
||||
int x;
|
||||
x = 56;
|
||||
int y;
|
||||
y = 10;
|
||||
x = y;
|
||||
z = x;
|
||||
return z;
|
||||
}
|
||||
Reference in New Issue
Block a user