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