Skip to content

Instantly share code, notes, and snippets.

@janstenpickle
Created May 30, 2013 14:04

Revisions

  1. janstenpickle created this gist May 30, 2013.
    6 changes: 6 additions & 0 deletions gistfile1.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    public static void waitWhat(String wait, double what) {
    if (what > 0.00015) {
    System.out.println(wait+"Wait, what?!");
    waitWhat(wait + " ", Math.random());
    }
    }