dadoHelloWorld.psm1
function Out-HelloWorld { [CmdletBinding()] param ( [Parameter()] [switch]$showTwice ) Write-Host "Hello World!" if ($showTwice) { Write-Host "Hello World!" -ForegroundColor Blue } } |
function Out-HelloWorld { [CmdletBinding()] param ( [Parameter()] [switch]$showTwice ) Write-Host "Hello World!" if ($showTwice) { Write-Host "Hello World!" -ForegroundColor Blue } } |