RosettaCodeData/Task/Extend-your-language/PowerShell/extend-your-language-3.ps1

9 lines
134 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Set-Alias -Name if2 -Value When-Condition
if2 $true $false {
"both true"
} { "first true"
} { "second true"
} { "neither true"
}