/**
 * TestTruck class works in tandem with Truck and Vehicle to demonstrate
 * the use of "super()" and constructors in inheritance.
 * JDEP 183H Fall 2008
 * Adapted From Wu's textbook.
 *
 * @author Leen-Kiat Soh
 * @version 1.0
 */


class TestTruck {

   public static void main (String[] arg)  {

      Pickup myJunk = new Pickup();

   }


}


