Guest User

Untitled

a guest
Oct 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. forLoop: for i in 0...10 {
  2. for j in 1...11 {
  3. if j == 7 {
  4. // Start the next iteration of the outer loop.
  5. continue forLoop
  6. }
  7. }
  8. }
Add Comment
Please, Sign In to add comment