Hello, I'm trying to use a continue statement in the following fashion: block first: for i in 0..<10: for j in 0..<5: if j == 3: continue first Run
However, the compiler reports that `continue` cannot have a label. How can I achieve this?
Hello, I'm trying to use a continue statement in the following fashion: block first: for i in 0..<10: for j in 0..<5: if j == 3: continue first Run
However, the compiler reports that `continue` cannot have a label. How can I achieve this?