<div dir="ltr">Personally, I don&#39;t feel that the problem is big enough to warrant a breaking change here.<div><br></div><div>`var` is the general property declaration keyword in Swift for read-write stored properties and read-only/read-write computed properties. The fact that you can use `let` in place of `var` under one specific circumstance (a read-only property backed by a stored variable) doesn&#39;t necessarily make the entire keyword meaningless, IMO. `let` is just a shortcut for a read-only stored property, and I think dropping it or moving `{ get set }` elsewhere would be more confusing, since it would be syntactically inconsistent with how the property is implemented. (Protocol members look the same as class/struct members with the body removed.)</div><div><br></div><div>In general, I&#39;m skeptical of ideas that just aim to protect new or bad developers from themselves, especially at the expense of consistency.</div><div><br></div><div><br></div><div><div class="gmail_quote"><div dir="ltr">On Tue, Jan 17, 2017 at 9:39 PM Vinnie Hesener via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="gmail_msg">The var keyword in protocol property requirements is misleading. <br class="gmail_msg"><br class="gmail_msg">From the docs:<br class="gmail_msg">*If a protocol requires a property to be gettable and settable, that property requirement cannot be fulfilled by a constant stored property or a read-only computed property. If the protocol only requires a property to be gettable, the requirement can be satisfied by any kind of property, and it is valid for the property to be also settable if this is useful for your own code.*<br class="gmail_msg"><br class="gmail_msg">I feel this is slightly confusing. To conform, I can use let for { get }. I can&#39;t use var for { get set } if it&#39;s computed. This leads me to believe that the keyword var has no actual instructional meaning here. It seems misplaced to represent &quot;property&quot;.<br class="gmail_msg"><br class="gmail_msg">I think it should be something else, or maybe removed entirely? Isn&#39;t { get set } enough to describe what this protocol needs? Maybe we can put the { get set } in front of the property name?<br class="gmail_msg"><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">I can think of a couple other small benefits of this, but I don&#39;t know if it will distract from the main discussion. One of them being that it may discourage using lets for those new to the language, as most people will just lazily copy/paste the declaration. </div></div>
_______________________________________________<br class="gmail_msg">
swift-evolution mailing list<br class="gmail_msg">
<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
</blockquote></div></div></div>