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

5 lines
117 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01: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