4 lines
62 B
Text
4 lines
62 B
Text
|
|
function multiply ([int] $a, [int] $b) {
|
||
|
|
return $a * $b
|
||
|
|
}
|