//********************************************************************
//  Words2.java       Author: Lewis and Loftus
//
//  Demonstrates the use of the super reference.
//********************************************************************

class Words2
{
   //-----------------------------------------------------------------
   //  Instantiates a derived class and invokes its inherited and
   //  local methods.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
      Dictionary2 webster = new Dictionary2 (1500, 52500);

      webster.pageMessage();
      webster.definitionMessage();   
   }
}
