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?
The example is as follows:
The first tuple does not have a space between the comma and the j ->
(i,j)Is this correct?