5 lines
60 B
PowerShell
5 lines
60 B
PowerShell
|
|
function multiply {
|
||
|
|
param ($a, $b)
|
||
|
|
return $a * $b
|
||
|
|
}
|