CS153/hw5/hw5programs/tc_error_if.oat

8 lines
99 B
Text
Raw Normal View History

int program(int argc, string[] argv) {
if (true) {
return 0;
} else {
var x = 3;
}
}