We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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)