Skip to content

Instantly share code, notes, and snippets.

@relrod
Created December 7, 2009 19:01
Show Gist options
  • Save relrod/251015 to your computer and use it in GitHub Desktop.
Save relrod/251015 to your computer and use it in GitHub Desktop.
// Fulfills ( http://rosettacode.org/wiki/Loop/For_with_step ) in Pike.
int main() {
for(int i = 2; i <= 16; i=i+2) {
write(i + "\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment