// File: main0.C // // Testing the GenList template for int #include #include #include #include "genlist2.h" main() { GenList 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 ; }