Adding var declaration and set statement handling
This commit is contained in:
+7
-2
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user