RosettaCodeData/Task/Command-line-arguments/PowerShell/command-line-arguments.ps1

5 lines
70 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
$i = 0
foreach ($s in $args) {
Write-Host Argument (++$i) is $s
}