// CSE 143, Autumn 2013 // Client program that we used to test ArrayIntList // with the debugger public class UseList { public static void main(String[] args) { ArrayIntList list = new ArrayIntList(); for(int i = 0; i < 42; i++) { list.add(i); } list.add(3, 42); } }