
/**
 * ListApp.java
 *
 *
 * Created: Tue Oct 08 22:06:32 2002
 *
 * @author <a href="mailto: "</a>
 * @version
 */
package containers;

public class ListApp {

   public static void main (String[] args) {
      List simpleList = new List();
   
      simpleList.addFirst(new Integer(42));
   
      simpleList.addFirst(new Integer(66));
   
      simpleList.removeFirst();

      //      System.out.println(god);
   } // end of main ()
   
}// ListApp
