Skip to content

Instantly share code, notes, and snippets.

@ochafik
Created February 12, 2013 14:07
Show Gist options
  • Save ochafik/4770105 to your computer and use it in GitHub Desktop.
Save ochafik/4770105 to your computer and use it in GitHub Desktop.
{
var iteration = 0
while (iteration < iterations) {
var i = 0
while (i < n) {
...
i += 1
}
iteration += 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment