4 lines
67 B
ActionScript
4 lines
67 B
ActionScript
|
|
function multiply(a:Number, b:Number):Number {
|
||
|
|
return a * b;
|
||
|
|
}
|