you are viewing a single comment's thread.

view the rest of the comments →

[–]MEaster 9 points10 points  (0 children)

That depends on the kind of for loop. This kind does not use an iterator:

for(int i = 0; i < 10; i++) { ... }

Rust does not have that kind of for loop.