CS153/hw5/hw4programs/phase2_1.oat

8 lines
104 B
Text
Raw Normal View History

int x = 3;
string y = "hello";
int program(int argc, string[] argv) {
print_string(y);
return 0;
}