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