CS153/hw5/hw4programs/globals2.oat

9 lines
103 B
Text
Raw Normal View History

global y = true;
int program(int argc, string[] args) {
if (y) {
return 17;
}
return 15;
}