Chapter4/4.1_Syntax/If/ifとelseの条件分岐.ps1

if ($a -gt 2) {
    Write-Host "The value $a is greater than 2."
}
else {
    Write-Host ("The value $a is less than or equal to 2," +
        " is not created or is not initialized.")
}