show/hide this revision's text 2 deleted 38 characters in body

For what it's worth, the WTF article was a WTF because it did an its outer loop that assigned all of the values on each pass, so the only iteration that survived was the last - wasting all of the previous iterations. Your code isn't even completely useless, as noted in the same WTF ballparkarticle - it was just as easy, and more direct, just to set an index variable directly than to loop and test it.

show/hide this revision's text 1

For what it's worth, the WTF article was a WTF because it did an outer loop that assigned all of the values on each pass, so the only iteration that survived was the last - wasting all of the previous iterations. Your code isn't even in the same WTF ballpark.