RosettaCodeData/Task/Documentation/Ring/documentation.ring
2023-07-01 13:44:08 -04:00

9 lines
144 B
Text

/*
Multiply two numbers
n1: an integer.
n2: an integer.
returns product of n1 and n2
*/
see mult(3, 5) + nl
func mult n1, n2
return n1*n2