15 lines
284 B
Plaintext
15 lines
284 B
Plaintext
module: CommonTasks
|
|
function: main
|
|
parameter:
|
|
declare num1: int
|
|
declare num2: int
|
|
return_type: int
|
|
|
|
body:
|
|
num1 = 10
|
|
num2 = 20
|
|
return (num1 + num2) * 2
|
|
end body
|
|
end function
|
|
end module
|