#include "CircleList.h" using namespace std; int main() { CircleList<int> l; for(int i = 0; i < 10; i++) l.add(i); cout << l; return 0; }