RosettaCodeData/Task/Documentation/Ring/documentation.ring

10 lines
144 B
Plaintext

/*
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