5 lines
79 B
PowerShell
5 lines
79 B
PowerShell
function print_all {
|
|
foreach ($x in $args) {
|
|
Write-Host $x
|
|
}
|
|
}
|