3 lines
50 B
PowerShell
3 lines
50 B
PowerShell
function multiply ($a, $b) {
|
|
return $a * $b
|
|
}
|
function multiply ($a, $b) {
|
|
return $a * $b
|
|
}
|