#### Before ``` switch a when b foo() when c, d bar() else baz() ``` #### After ``` switch a case b foo() case c, d bar() default baz() ``` - Less indentation - Mirrors JS keywords - No ambiguity against `if`-`else` (#562)