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

3 lines
50 B
PowerShell

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