Chapter4/4.5_Scope/PrivateScope.ps1

function Test{
    $a
    $b
}
$private:a = "private"
$local:b = "local"
Test