// A program that tests the intermediate version of the class Day.
// Barry Cornelius, 19 June 2000
public class DayProg
{
   public static void main(final String[] pArgs)
   {
      final Day tDay = Day.friday;
      System.out.println(tDay);
   }
}
