Chapter4/4.1_Syntax/switch/switchConditionClues.ps1
switch (6) { {$_ -lt 5} {'x < 5'} {$_ -lt 10} {'x < 10'} default {"default"} } |
switch (6) { {$_ -lt 5} {'x < 5'} {$_ -lt 10} {'x < 10'} default {"default"} } |