13 lines
227 B
Plaintext
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
|