RosettaCodeData/Task/Function-definition/PowerShell/function-definition-5.ps1
2026-04-30 12:34:36 -04:00

3 lines
62 B
PowerShell

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