 public class Example1
{
    public static void main(String[] args)
   {
      Sessions semester;
      
      semester = Sessions.Spring;
      
      System.out.println("Session starting months in 2006: ");
      
      // i couldn't figure out the for-each loop, so here's what i came up with
      //    lame, i know... i'll need to ask you about that
      
      System.out.println(SemesterUtilities.startingMonth(semester.Spring));
      System.out.println(SemesterUtilities.startingMonth(semester.Summer));
      System.out.println(SemesterUtilities.startingMonth(semester.Fall)); 
       
       
   }
}
