//********************************************************************
//  Firm.java       Author: Lewis and Loftus
//
//  Demonstrates polymorphic processing.
//********************************************************************

class Firm
{
   //-----------------------------------------------------------------
   //  Creates a staff of employees for a firm and pays them.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
   Staff personnel = new Staff();

   	personnel.payday();
   }
}