#include #include"list.h" int main() { List list; // declare a list // here we are just using the list methods list.LongName(); list.Name(); for( int i = 0 ; i < 10 ; i++ ) list.Insert( 10 - i ); list.Delete(5); cout << "deleted 5" << endl; while( !list.Empty() ) cout << list.Delete() << " "; cout << endl; return 0; }