15 lines
293 B
Plaintext
15 lines
293 B
Plaintext
module: CommonTasks
|
|
function: main1
|
|
parameter:
|
|
declare num1: int
|
|
declare num2: int
|
|
return_type:void
|
|
|
|
body:
|
|
num1 = 10
|
|
num2 = 20
|
|
declare result:int = num1+num2+1
|
|
end body
|
|
end function
|
|
end module
|