Skip to content

Instantly share code, notes, and snippets.

@hikoz
Created March 19, 2013 07:49
Show Gist options
  • Select an option

  • Save hikoz/5194373 to your computer and use it in GitHub Desktop.

Select an option

Save hikoz/5194373 to your computer and use it in GitHub Desktop.

Revisions

  1. hikoz created this gist Mar 19, 2013.
    14 changes: 14 additions & 0 deletions A.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    public class A {
    public static void main(String[] args) {
    while (true) {
    new Thread(new Runnable() {
    public void run() {
    try {
    Thread.sleep(10000L);
    } catch (InterruptedException e) {
    }
    }
    }).start();
    }
    }
    }