<div dir="ltr">The proposed `repeat { }` is identical to `while true { }`. One of these can happen accidentally because a trailing clause was unintentionally omitted, while the other cannot. One of these currently exists in the language, while the other does not. What is the motivation for having a new way of doing the same thing? I have not seen an answer.<div><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 10, 2016 at 4:05 PM, Taras Zakharko 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">When I need a loop with complex control flow that does not fit into the classical while {} or repeat {} while structure, I use this:<br>
<br>
do_stuff: do {<br>
  …<br>
  continue do_stuff<br>
}<br>
<br>
This pattern explicit and allows very complex control flow patterns without the drawbacks of the unrestricted goto construct.<br>
<br>
Therefore I don’t see utility with having a repeat {} without while clause.<br>
<br>
Best,<br>
<br>
 Taras<br>
<div><div><br>
<br>
&gt; On 10 May 2016, at 22:39, Dominik Pich via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;&gt;&gt; On May 10, 2016, at 3:30 PM, Tyler Cloutier 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; Secondly it’s a very simple way of introducing new programmers to loops. It’s IMHO more clear to a new programmer that repeat will just repeat indefinitely vs while true.<br>
&gt;&gt;<br>
&gt;&gt; This point seems strange to me - why teach a new programmer about loops by first showing them a looping construct they should probably never use in actual practice until they really know what they’re doing?<br>
&gt; totally agree… it would be a bad first introduction, id say :)<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&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" 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>
</div></div></blockquote></div><br></div></div></div>