5 lines
52 B
Text
5 lines
52 B
Text
|
|
function multiply( $a, $b )
|
||
|
|
{
|
||
|
|
return $a * $b;
|
||
|
|
}
|