4 lines
62 B
Text
4 lines
62 B
Text
|
|
function multiply(x:Float, y:Float):Float{
|
||
|
|
return x * y;
|
||
|
|
}
|