2025-07-28 13:43:27 +08:00

13 lines
229 B
Plaintext

module: Main
import: os
globals:
declare num1:int=10
function: main
return_type: void
body:
declare num1:int=11
print(num1)
end body
end function
end module