2025-08-04 15:08:29 +08:00

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