// Written by Mark Jacobson - 810:052 introduction to linked lists // and C++ pointers (February 19th, 1997) // Example program for 02/25 Tuesday class... // // Reformatted by Eugene Wallingford #include "simple_ll.h" void main() { List myList; myList.add(10); myList.add(12); myList.add(21); myList.add(1024); myList.showList(); myList.showListAddresses(); }