// Simple client program that adds some values to the end of a 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); } }