RosettaCodeData/Task/Function-definition/Ursa/function-definition.ursa

5 lines
117 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# multiply is a built-in in ursa, so the function is called mult instead
def mult (int a, int b)
return (* a b)
end