CS153/hw5/hw5programs/tc_correct_local_redeclaration.oat

7 lines
81 B
Text
Raw Normal View History

global x = 2;
int program(int argc, string[] argv) {
var x = 2;
return x;
}