You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the idea is to have the same set of tests for both interpreters. each test should be a pair of input/output files. for example, the following program tests shadowing of global variables by local variables:
var i = 0;
{ var i = 1; println i; }
println i;
the expected output is:
0
1
The text was updated successfully, but these errors were encountered:
zxul767
changed the title
start feature tests for both clox and jlox
start feature tests for both clox and jloxNov 9, 2022
the idea is to have the same set of tests for both interpreters. each test should be a pair of input/output files. for example, the following program tests shadowing of global variables by local variables:
the expected output is:
The text was updated successfully, but these errors were encountered: