Skip to content

Instantly share code, notes, and snippets.

@andr3a88
Last active January 26, 2016 11:49
Show Gist options
  • Save andr3a88/13df2e07347dc6e31fb9 to your computer and use it in GitHub Desktop.
Save andr3a88/13df2e07347dc6e31fb9 to your computer and use it in GitHub Desktop.
Swift Loop Labels
sectionLoop: for section in sections {
rowLoop: for row in rows {
if row.isMagical {
break sectionLoop
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment