Agree with David on all points. Neat idea, but not convinced it’s a win in terms of tidying up code vs. increased burden of new grammar rule.<br><br>Agree also that it’s a subjective opinion. For me, ({[]}) nesting is clunky both to read and write, but (“”) just doesn’t have the same issues even with multiline syntax–the symbols are just so unlike each other.<br><br>Your DSL examples, if truly you’re using them often, suggest that these particular types should be extended to conform to ExpressibleByStringLiteral.<br><div class="gmail_quote"><div dir="ltr">On Thu, Jun 15, 2017 at 11:16 David Hart 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">I totally see what you are driving at. But I just see less value in it that with trailing closure. But it’s very personal.<br>
<br>
&gt; On 15 Jun 2017, at 13:18, Gor Gyolchanyan &lt;<a href="mailto:gor@gyolchanyan.com" target="_blank">gor@gyolchanyan.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Funny you should mention DSLs:<br>
&gt;<br>
&gt; let myQuery = sql &quot;&quot;&quot;<br>
&gt;       SELECT id, name, date<br>
&gt;       FROM MyTable<br>
&gt;       WHERE id &gt; 100<br>
&gt;       &quot;&quot;&quot;<br>
&gt;<br>
&gt; let myLayout = NSLayoutConstraint &quot;&quot;&quot;<br>
&gt;       ...<br>
&gt;       &quot;&quot;&quot;<br>
&gt;<br>
&gt; let myPredicate = NSPredicate &quot;&quot;<br>
&gt;       ...<br>
&gt;       &quot;&quot;&quot;<br>
&gt;<br>
&gt;&gt; On Jun 15, 2017, at 2:05 PM, David Hart &lt;<a href="mailto:davidhart@fastmail.com" target="_blank">davidhart@fastmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Personally, I have never felt that need.<br>
&gt;&gt;<br>
&gt;&gt; Trailing closures fill of need of making Swift a good candidate for building DSLs, where they make the function calls look more like first-class operations. But I don’t think that trailing strings would be as useful.<br>
&gt;&gt;<br>
&gt;&gt; David.<br>
&gt;&gt;<br>
&gt;&gt;&gt; On 15 Jun 2017, at 11:54, Gor Gyolchanyan via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Good day, swift evolution community!<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I&#39;ll just get right to it...<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Did anyone else beside me wished this was a thing?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; func parse(allowSomeBehavior: Bool = true, source: String) {<br>
&gt;&gt;&gt;     // ...<br>
&gt;&gt;&gt; }<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; parse(allowSomeBehavior: false) &quot;&quot;&quot;<br>
&gt;&gt;&gt;     This is a source string<br>
&gt;&gt;&gt;     that contains a number of lines of text<br>
&gt;&gt;&gt;     which is passed to the function `parse`<br>
&gt;&gt;&gt;     &quot;&quot;&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; parse &quot;&quot;&quot;<br>
&gt;&gt;&gt;     The exact same thing as above<br>
&gt;&gt;&gt;     except no other parameters are specified<br>
&gt;&gt;&gt;     &quot;&quot;&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; swift-evolution mailing list<br>
&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt;&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>
&gt;&gt;<br>
&gt;<br>
<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">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>
</blockquote></div>