/** An example client of LinkedIntList that adds, * sets, removes, and prints it. * * @author Adam Blank */ public class LinkedIntListClient { public static void main(String[] args) { LinkedIntList list = new LinkedIntList(); list.add(5); list.add(10); list.set(1, 15); list.add(100); System.out.println(list + " " + list.get(1) + " " + list.get(2)); } }