Skip to content

Instantly share code, notes, and snippets.

@janstenpickle
Created May 30, 2013 14:04
Show Gist options
  • Save janstenpickle/5678078 to your computer and use it in GitHub Desktop.
Save janstenpickle/5678078 to your computer and use it in GitHub Desktop.
Wait, what?!
public static void waitWhat(String wait, double what) {
if (what > 0.00015) {
System.out.println(wait+"Wait, what?!");
waitWhat(wait + " ", Math.random());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment