6 lines
95 B
Text
6 lines
95 B
Text
|
|
global arr = new int[]{1, 2, 3, 4};
|
||
|
|
|
||
|
|
int program(int argc, string[] args) {
|
||
|
|
return arr[2];
|
||
|
|
}
|