// (c) F. Merciol 
// Plus d'informations sur http://m3101.merciol.fr
package thread;
public class SimpleThread extends Thread {

    public void run () {
				System.err.println ("Here is "+getName ());
    }

    public static void main (String[] arg) {
				System.err.println ("new");
				Thread thread = new SimpleThread ();

				System.err.println ("start");
				thread.start ();
    }
}
