<div dir="ltr"><div class="inbox-inbox-uyb8Gf" style="color:rgb(33,33,33);font-size:13px"><div><div class="inbox-inbox-F3hlO"><div dir="ltr" class="gmail_msg">Hi,<div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">I found it odd that the `label:` style is used for switch-case conditions, considering that Swift does not have implicit fallthrough. To me the label style only makes sense if you think of conditions essentially as labels for a goto statement, which implies fallthrough.</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">Personally I think this syntax would make more sense:</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">switch condition {</div><div class="gmail_msg">  case 1 {</div><div class="gmail_msg">    //</div><div class="gmail_msg">  }</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">  case 2 {</div><div class="gmail_msg">    //</div><div class="gmail_msg">  }</div><div class="gmail_msg">}</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">This is how Rust implements match, although it is an expression so it especially applies to that context. Nonetheless I think the above syntax not only looks a lot nicer but makes more sense, especially since the current syntax is the only instance where Python-style colons and indentation are used for designating sections of code rather than braces.</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">Thoughts?</div><div class="gmail_msg"><br></div><div class="gmail_msg">-Marco</div></div></div></div></div></div>