//********************************************************************
//  Words.java       Author: Lewis and Loftus
//
//  Demonstrates the use of an inherited method.
//********************************************************************

class Words
{
   //-----------------------------------------------------------------
   //  Instantiates a derived class and invokes its inherited and
   //  local methods.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
      Dictionary webster = new Dictionary ();

      webster.pageMessage();
      webster.definitionMessage();   
   }
}
