
	List l;
	// fill the list with integers using List::add()
	...
	It i( l);	// bind the iterator to the list l
	while( !i.isend() )
		printf( "%d\n", i.get() );

