2025-08-01 18:36:06 +08:00

15 lines
283 B
Plaintext

module: Main
import: os
function: main
return_type: void
body:
declare cols: int = 2
declare matrix: int[] = [1, 2, 3, 4]
declare x: int = matrix[cols]
os.print(x)
end body
end function
end module