CS153/hw4/hw4programs/run4.oat

7 lines
112 B
Text
Raw Normal View History

global arr = int[] null;
int program (int argc, string[] argv) {
arr = new int[]{17,42};
return arr[1];
}