14 lines
241 B
Plaintext
14 lines
241 B
Plaintext
module: Main
|
|
import: os
|
|
globals:
|
|
declare sum: int = 123
|
|
function: main
|
|
parameter:
|
|
return_type: int
|
|
body:
|
|
os.print(sum)
|
|
return 0
|
|
end body
|
|
end function
|
|
end module
|