13 lines
261 B
Plaintext
13 lines
261 B
Plaintext
module: Main
|
|
import: os
|
|
globals:
|
|
declare num1:int=10
|
|
declare num2:int=10
|
|
function: main
|
|
return_type: void
|
|
body:
|
|
declare num1:int=11
|
|
print(num1+num2)
|
|
end body
|
|
end function
|
|
end module |