/* * Kyle Pierce * CSE 143 * * Simple client program using the add method of LinkedIntList */ public class LinkedIntListClient { public static void main(String[] args) { LinkedIntList list = new LinkedIntList(); list.add(3); list.add(5); list.add(2); list.add(17); list.print(); } }