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

7 lines
135 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fun float multiply (float a, float b)
{
return a * b;
}
// uncomment next line and change values to test
//<<< multiply(16,4) >>>;