2025-08-01 23:34:57 +08:00

27 lines
625 B
Plaintext

module: Main
import: os
function: main
return_type: void
body:
declare n: int[][][][] = [
[
[ [17, 18], [19, 20] ],
[ [21, 22], [23, 24] ]
],
[
[ [25, 26], [27, 28] ],
[ [29, 30], [31, 32] ]
]
]
declare i: int = 0
declare j: int = 1
declare k: int = 0
declare l: int = 0
declare x: int = n[i][j][k][l]
os.print(x)
end body
end function
end module