PowerShell PowerShell $a = 'white' switch ($a) { 'red' {"The colour is red"} 'white' {"The colour is white"} default{"Another colour"} } 1234567 $a = 'white'switch ($a){'red' {"The colour is red"}'white' {"The colour is white"}default{"Another colour"}}