I have the following code snippet:
public class A { public static void main(String[] arg) { new Thread() { public void run() {
Just call start()
new Thread() { public void run() { System.out.println("blah"); } }.start();