lox/tests/vars.lox
Adnan Ioricce 77c0845f61 [Chapter13&Inheritance] - Adding tests;Bugs found
- Refactors will be necessary, the interpreter is not working as expected
- Try to execute the tests to check the errors
- It seems some funcionality with the scanner or resolver is not working
- Debugging is necessary.
2024-10-06 13:13:50 +00:00

8 lines
74 B
Plaintext

var a = 0;
a + 1;
print a + 1;
a = 2;
print a + 1;
var b = 3;
print a + b