<div dir="ltr">I appreciate the desire for consistency but I really don&#39;t like this proposal. I agree with others who&#39;ve said that it makes the code look heavy and that the extra parens only obscure the actual code, at least when the code is short. I don&#39;t think there is any way in which the parens make the code clearer, they&#39;re just visual noise. <div><br></div><div>If we insist on consistency then shouldn&#39;t we also do away with implicit returns from single-expression closures? After all this behavior is inconsistent with named functions. And shouldn&#39;t closures also declare their signature before their opening brace, rather than after, also to be consistent with named functions?</div><div><br></div><div>All these breaks with consistency have the effect of making the language easier and more pleasant to read, and they don&#39;t seem to be major stumbling blocks for people learning Swift. I hate to see them go away.<br></div><div><br></div><div>- Peter</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jul 8, 2016 at 1:58 AM, G B via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I’d imagine it would be the same just without the colon and with the braces:<br>
<br>
<br>
enum MyEnum {<br>
    case IntEnum(Int)<br>
    case StringEnum(String)<br>
}<br>
<br>
<br>
var x=MyEnum.StringEnum(&quot;Hello&quot;)<br>
<br>
switch x {<br>
    case .IntEnum(let x) {<br>
        print(x)<br>
    }<br>
<br>
    case .StringEnum(let x) {<br>
        print(x)<br>
    }<br>
<br>
}<br>
<br>
<br>
<br>
Not much different than:<br>
<br>
if case .StringEnum(let v) = x {<br>
    print(v+&quot; again&quot;)<br>
}<br>
<br>
except that the switch compares all case statements against x.<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
&gt; On Jul 7, 2016, at 10:37 PM, David Sweeris &lt;<a href="mailto:davesweeris@mac.com">davesweeris@mac.com</a>&gt; wrote:<br>
&gt;<br>
&gt; What would be the proposed syntax for cases with associated values?<br>
&gt;<br>
&gt; In general, +1 for simplifying the syntax, but I&#39;m not sure it&#39;d work well, given that enums take on a larger roll in Swift than they do in other languages. Or maybe it&#39;d be fine... I&#39;m just too tired to picture it in my head.<br>
&gt;<br>
&gt; - Dave Sweeris<br>
&gt;<br>
&gt;&gt; On Jul 7, 2016, at 15:07, G B via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; It has always seemed odd to me that `case`s use a colon as a delimiter rather than curly braces like everything else.  Is there a reason for this other than the legacy of C-like languages?<br>
&gt;&gt;<br>
&gt;&gt; If I wanted to write a series of branching `if` \ `else` statements I would do it like so:<br>
&gt;&gt;<br>
&gt;&gt; if x==0      { print(0) }<br>
&gt;&gt; else if x==1 { print (1) }<br>
&gt;&gt; else if x==2 { print(2) }<br>
&gt;&gt; else         { print(&quot;other”) }<br>
&gt;&gt;<br>
&gt;&gt; I believe all flow control is wrapped in curly braces, except for `case`s inside a `switch`:<br>
&gt;&gt;<br>
&gt;&gt; switch x {<br>
&gt;&gt; case 0: print(0)<br>
&gt;&gt; case 1: print(1)<br>
&gt;&gt; case 2: print(2)<br>
&gt;&gt; default: print(&quot;other&quot;)<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I feel like this would be more consistent with the rest of the syntax:<br>
&gt;&gt;<br>
&gt;&gt; switch x {<br>
&gt;&gt; case 0 { print(0) }<br>
&gt;&gt; case 1 { print(1) }<br>
&gt;&gt; case 2 { print(2) }<br>
&gt;&gt; default { print(&quot;other”) }<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; The colon syntax evokes a label, but the modern, complex `case` statements in Swift don’t act much like labels.<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; swift-evolution mailing list<br>
&gt;&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</div></div></blockquote></div><br></div>