Skip to content

Instantly share code, notes, and snippets.

@madhephaestus
Forked from christmoore/whileexample.groovy
Last active February 2, 2017 19:56
Show Gist options
  • Save madhephaestus/900e15bf3a2ccc0a510d to your computer and use it in GitHub Desktop.
Save madhephaestus/900e15bf3a2ccc0a510d to your computer and use it in GitHub Desktop.
int i = 1;
boolean goLoop=true
while ( goLoop)
{
System.out.println(i);
i+=(Math.random()*30);
if(i>1000){
goLoop=false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment