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