2025-08-03 00:08:56 +08:00

13 lines
227 B
Plaintext

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