restructuration of the files

This commit is contained in:
2026-01-04 09:24:33 +01:00
parent 243f41f173
commit 0ac9fb2303
9 changed files with 17 additions and 2 deletions

7
1.Basic/5.Switch.ps1 Normal file
View File

@@ -0,0 +1,7 @@
$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}
}