//File:	driver.cpp
#include "smallLinked.h"

int main()
{
	list l;
	
	l.add_front(25);
	l.add_front(12);

	cout << l << endl;
	
	list l2(l);
	
	cout << l2 << endl;

	return 0;
}
