CS153/hw6/hw5programs/tc_correct_while.oat

7 lines
89 B
Text
Raw Normal View History

int program(int argc, string[] argv) {
while (1 > 0) {
return 3;
}
return 0;
}