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