// Using ClockStdout to start a new thread.
// Barry Cornelius, 21 June 2000
public class ClockStdoutProg
{
   public static void main(final String[ ] pArgs)
   {
      System.out.println("ClockStdoutProg program");
      final ClockStdout tClockStdout = new ClockStdout();
      tClockStdout.start();
      for (int tCount = 0; tCount<8; tCount++)
      {
         System.out.println("tCount is: " + tCount);
         try
         {
            Thread.sleep(1000);
         }
         catch(final InterruptedException pInterruptedException)
         {
         }
      }
      System.out.println("ClockStdoutProg program");
   }
}
