2025-08-04 15:08:29 +08:00

20 lines
348 B
Plaintext

module: Main
import: os
globals:
declare num2:int=10
function: main
returns: void
body:
declare num1:int=11
os.print(num1+num2+abc())
end body
end function
function: abc
returns: int
body:
return 1
end body
end function
end module