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

4 lines
50 B
Plaintext

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