+1, having to add an underscore in a X.times loop always feels contrived.

On Fri, Jul 1, 2016 at 2:38 AM, Diego Barros via swift-evolution <
swift-evolution@swift.org> wrote:

> When you want a simple `for` loop, for example:
>
> for _ in 1...10 {
>
> // do something 10 times
>
> }
>
>
> Clean-up and simplify the syntax by removing the superfluous underscore
> and `in`:
>
>
> for 1...10 {
>
> // do something 10 times
>
> }
>
> -- diego
>
> _______________________________________________
> swift-evolution mailing list
> swift-evolution@swift.org
> https://lists.swift.org/mailman/listinfo/swift-evolution
>
>


-- 
Joseph Bell
http://dev.iachieved.it/iachievedit/
@iachievedit
_______________________________________________
swift-evolution mailing list
swift-evolution@swift.org
https://lists.swift.org/mailman/listinfo/swift-evolution

Reply via email to