#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
#include "CardLinkedList.h"


int main(int argc, char *argv[])
{
  
  CardLinkedList hand;     
  int i;
  // make some cards and put them in the hand
  // this is by no means a full set of test cases!!!   
  	
  for(i=0;i<10;i++)
  	hand.addHead(new Card(0,i));
    
  for(i=0;i<10;i++)
  	hand.addTail(new Card(1,i));
  
  hand.printList();
