// test_linked_list.c
//
//   $ gcc test_linked_list.c linked_list.c -o test_linked_list
//   $ ./test_linked_list
//
// This is the main() routine that tests the linked_list.c library
// 

#include "linked_list.h"

int main(){
  linkedlist numbers = new_counting_list(3);
  print_list_details(numbers);
  linked_list_tests();
  return 0;
}