RosettaCodeData/Task/Function-definition/PowerShell/function-definition-5.psh
2023-07-01 13:44:08 -04:00

3 lines
62 B
Text

function multiply ([int] $a, [int] $b) {
return $a * $b
}