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

8 lines
150 B
PowerShell

$PokemonCaught = "908"
If($PokemonCaught -eg 908) {
Write-Host "You're a Pokemon Master! "
} Else {
Write-Host "Go catch more Pokemon!"
}