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

6 lines
79 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
function print_all {
foreach ($x in $args) {
Write-Host $x
}
}