SCompiler/test
2025-05-11 21:41:34 +08:00

26 lines
446 B
Plaintext

module: CommonTasks
function: main
parameter:
return_type:int
body:
return CommonTasks.test(3,1)
end body
end function
function:test
parameter:
declare num1:int
declare num2:int
return_type:int
body:
declare result : int
result = num1 + num2
return result
end body
end function
end module