import java.io.IOException;
public class TestThread {
public static void main (String [] args) {
Thread myThrd = new Thrd ();
myThrd.start();
}
public static class Thrd implements Thread {
public void run () {
System.out.println ("Aber Hallo");
}
}
}