RosettaCodeData/Task/Function-definition/ChucK/function-definition.chuck

7 lines
135 B
Plaintext

fun float multiply (float a, float b)
{
return a * b;
}
// uncomment next line and change values to test
//<<< multiply(16,4) >>>;