CS153/hw5/hw4programs/globals7.oat

8 lines
131 B
Text
Raw Permalink Normal View History

global arr = new int[] {};
int program (int argc, string[] argv) {
var x = new int[3];
arr = x;
x[2] = 3;
return arr[2];
}