9 lines
134 B
Text
9 lines
134 B
Text
|
|
Set-Alias -Name if2 -Value When-Condition
|
||
|
|
|
||
|
|
if2 $true $false {
|
||
|
|
"both true"
|
||
|
|
} { "first true"
|
||
|
|
} { "second true"
|
||
|
|
} { "neither true"
|
||
|
|
}
|