RosettaCodeData/Task/Function-definition/Chapel/function-definition-1.chapel

5 lines
41 B
Plaintext

proc multiply(a, b)
{
return a * b;
}