11 lines
208 B
Plaintext
11 lines
208 B
Plaintext
module: Math
|
|
function: add
|
|
params:
|
|
declare n1: int
|
|
declare n2: int
|
|
returns: int
|
|
body:
|
|
return n1 + n2
|
|
end body
|
|
end function
|
|
end module |