CS153/hw6/oatprograms/run3.oat

7 lines
110 B
Text
Raw Normal View History

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