RosettaCodeData/Task/Function-definition/PowerShell/function-definition-5.psh

4 lines
62 B
Text
Raw Normal View History

2023-07-01 11:58:00 -04:00
function multiply ([int] $a, [int] $b) {
return $a * $b
}