CS153/hw6/hw5programs/tc_correct_if.oat

8 lines
98 B
Text
Raw Normal View History

int program(int argc, string[] argv) {
if (true) {
return 0;
} else {
return 1;
}
}