package cap9.pilaiterabile;

public interface Iterator
{ Object next();
  boolean hasNext();
}
