// File: main0.C
//
// Testing the GenList template for int

#include <iostream.h>
#include <iomanip.h>
#include <stdlib.h>
#include "genlist2.h"

main() {
   GenList<int> L ;

   L.append(5) ;
   L.append(7) ;
   L.append(5) ;
   L.prepend(9) ;
   L.prepend(8) ;
   L.prepend(5) ;
   L.print() ;
   cout << endl ;

   L.remove(5) ;
   L.print() ;
   cout << endl ;
}
