Skip to content

Instantly share code, notes, and snippets.

@seanwalsh
Last active December 30, 2015 00:08
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 seanwalsh/f959ca605cb47171d7d8 to your computer and use it in GitHub Desktop.
Save seanwalsh/f959ca605cb47171d7d8 to your computer and use it in GitHub Desktop.

JavaScript

for (i=0; i < n; i++) {
 // code
}

PHP

for ($i = 0; $i < $n; $i++) {
  // code
}

Swift

for var i = 0; i < n; i++ {
  // code
}

Python

 for i in range(0,n):
    # code

Ruby

for i in 0...n
    # code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment