2025-08-04 14:52:13 +08:00

13 lines
223 B
Plaintext

module: Main
import:os
function: main
returns: void
body:
declare arr: int[] = [1, 2, 3]
arr[0] = 5
os.print(arr[0])
end body
end function
end module