Skip to content

Instantly share code, notes, and snippets.

@indutny
Created April 6, 2012 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indutny/93fdeea7b7b5ce9e2ebf to your computer and use it in GitHub Desktop.
Save indutny/93fdeea7b7b5ce9e2ebf to your computer and use it in GitHub Desktop.
i = 10
k = 0
while (--i) {
j = 10
while (--j) {
k = k + 1
}
}
return k
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment