// Hunter Schafer, CSE 143 // Simple client program public class ListClient { public static void main(String[] args) { ArrayIntList list1 = new ArrayIntList(); ArrayIntList list2 = new ArrayIntList(); list1.add(5); list1.add(4); list2.add(6); // Hunter: Doesn't work quite yet, why? System.out.println(list1); System.out.println(list2); } }