RosettaCodeData/Task/Variadic-function/PowerShell/variadic-function-1.psh

6 lines
79 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function print_all {
foreach ($x in $args) {
Write-Host $x
}
}