//============================================================
//                Copyright (c) 2000 aJile Systems
//                     All Rights Reserved
//============================================================

public class Tut0 {	
    public static void main(String args[]) {
	Worker t = new Worker(0x7FFF0);  // Counter location
	t.sleepInterval = 100L;  // 100 msec
	System.out.println("Tut0 starts SleepInterval of "+t.sleepInterval+" milliseconds.");

	t.start();	
    }
}
