/* File: main5i.C

   Using the C++ list ADT with integer data
*/

#include <stdio.h>
#include <assert.h>
#include "list5.h"

main() {
   List *L ;

   L = new List ;
   L->Append(1) ;
   L->Append(2) ;
   L->Append(3) ;
   L->Append(4) ;
   L->Prepend(0) ;
   L->Print() ;

}
