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