package korisnik;

import lista.*;

public class TestVLPravokutnik {
    public static void main(String[] args) {
	VezanaLista vl = new VezanaLista();

	vl.insertAtTail(new CvorPravokutnik(-1,-1,1,1));
	vl.insertAtTail(new CvorPravokutnik(2,3));
	vl.insertAtHead(new CvorPravokutnik());
	vl.insertAtHead(new CvorPravokutnik(0,0,1,1));
	
	vl.remove(new CvorPravokutnik());

	for (Cvor p=vl.getHead();p!=null;p=p.getNext())
	    System.out.println(p);
    }
}
