snow/playground/Demo1/Math.snow
2025-06-28 16:30:14 +08:00

11 lines
215 B
Plaintext

module: Math
function: add
parameter:
declare n1: int
declare n2: int
return_type: int
body:
return n1 + n2
end body
end function
end module