Files
Powershell-Training/1.Basic/5.Switch.ps1
2026-01-04 09:24:33 +01:00

8 lines
228 B
PowerShell

$House = "Targaryen"
Switch($House){
"Targaryen" {Write-Host "You're crazy!"; break}
"Lannister" {Write-Host "You always pay your debts!"; break}
"Stark" {Write-Host "Nothing bad is going to happen at the wall"; break}
}