CS153/hw4/oatprograms/globals7.oat
jmug cfe502c598 Add all the assignment code.
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-01-24 18:59:28 -08:00

8 lines
No EOL
131 B
Text

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