Agree. I prefer the new rules over the old, but considering common use cases, stripping the leading and trailing newline makes for a more pleasant experience than not stripping either of them.<br><br>I think that is generally worth prioritizing over a simpler algorithm or even accommodating more styles. Moreover, a user who wants a trailing or leading newline merely types an extra one if there is newline stripping, so no use cases are made difficult, only a very common one is made more ergonomic.<br><div class="gmail_quote"><div dir="ltr">On Wed, Apr 12, 2017 at 09:52 Thorsten Seitz 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">&gt; Am 12.04.2017 um 15:40 schrieb Brent Royal-Gordon via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt;:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Hey folks,<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; We&#39;ve revised the proposal again. The main difference: You no longer need an initial newline to enable indentation stripping, and stripping no longer removes that newline even if it is present. (Adrian Zubarev and I believe some others argued for this.) We<br class="gmail_msg">
<br class="gmail_msg">
Hmm, not sure if I like these changes. I expect that almost all strings won&#39;t begin with a newline and a majority won’t end with a newline. The new design would require a leading backslash almost all the time and a trailing backslash often, which is ugly:<br class="gmail_msg">
<br class="gmail_msg">
let mystring = &quot;““\<br class="gmail_msg">
    text text<br class="gmail_msg">
    text text\<br class="gmail_msg">
    &quot;““<br class="gmail_msg">
<br class="gmail_msg">
-Thorsten<br class="gmail_msg">
<br class="gmail_msg">
<br class="gmail_msg">
&gt; disagreed with this at first, but it made more sense as we thought about it more. There are a few things we like about it:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;       1. The rules and algorithm are simpler.<br class="gmail_msg">
&gt;       2. It accommodates more coding styles.<br class="gmail_msg">
&gt;       3. Every non-escaped newline in the literal now creates a corresponding newline in the resulting string.<br class="gmail_msg">
&gt;       4. it&#39;s easy to get the old behavior back by backslashing the leading newline.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Unfortunately, I think this precludes stripping the trailing newline by default, but I think this is ultimately a simpler and better approach than the previous draft.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Other changes:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;       * We realized we needed to make closing delimiter matching a little more complicated if we wanted to allow one or two adjacent double-quote characters that were part of the literal&#39;s contents. Oops.<br class="gmail_msg">
&gt;       * Tabs aren&#39;t actually allowed in ordinary string literals, so we now explicitly mention that as a difference between the two types.<br class="gmail_msg">
&gt;       * We wrote some tests for the prototype (though they haven&#39;t been updated for this new version yet).<br class="gmail_msg">
&gt;       * There were some other wording changes, particularly in the indentation stripping rationale, but nothing that affects the actual design.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; I understand John is working on a new version of his toolchain so people can play with the prototype. We hope to have that ready for you all soon.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Let us know what you think of the revisions!<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; --<br class="gmail_msg">
&gt; Brent Royal-Gordon<br class="gmail_msg">
&gt; Architechies<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; _______________________________________________<br class="gmail_msg">
&gt; swift-evolution mailing list<br class="gmail_msg">
&gt; <a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
&gt; <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">
<br class="gmail_msg">
_______________________________________________<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>