#include #include #include "linkedList.h" using namespace std; int main() { linkedList L; //Add items to front of list L.addFront(20); L.addFront(50); L.addFront(11); L.addFront(4); L.addFront(71); L.addFront(32); L.addFront(42); //Print list L.printList(); //Add to the back L.addBack(800); L.addBack(900); L.printList(); return 0; }