3 lines
53 B
PowerShell
3 lines
53 B
PowerShell
function multiply {
|
|
return $args[0] * $args[1]
|
|
}
|
function multiply {
|
|
return $args[0] * $args[1]
|
|
}
|