// CSE 143, Winter 2011, Marty Stepp // This client program tests our ArrayIntList by adding and removing several // elements. We viewed the state of the list using the jGRASP debugger. public class UseList { public static void main(String[] args) { ArrayIntList list = new ArrayIntList(); list.add(42); list.add(-3); list.add(17); list.add(999); list.add(0, 888); list.add(3, 444); list.remove(1); // list.add(50); // list.add(60); // list.add(70); // list.add(80); // list.add(90); // list.add(100); // list.add(110); // list.add(120); // list.add(130); } }