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

7 lines
135 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
fun float multiply (float a, float b)
{
return a * b;
}
// uncomment next line and change values to test
//<<< multiply(16,4) >>>;