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