RosettaCodeData/Task/Variadic-function/PowerShell/variadic-function-1.ps1
2026-04-30 12:34:36 -04:00

5 lines
79 B
PowerShell

function print_all {
foreach ($x in $args) {
Write-Host $x
}
}