Skip to content

Instantly share code, notes, and snippets.

@relrod
Created December 7, 2009 18:45
Show Gist options
  • Save relrod/251007 to your computer and use it in GitHub Desktop.
Save relrod/251007 to your computer and use it in GitHub Desktop.
// Fulfills ( http://rosettacode.org/wiki/Loop/Do_While ) in Pike
int main(){
int value = 0;
do {
value++;
write(value + "\n");
} while (value % 6);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment