We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The example is as follows:
for (i,j) in (5..10).enumerate() { println!("i = {} and j = {}", i, j); }
The first tuple does not have a space between the comma and the j -> (i,j) Is this correct?
(i,j)