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