package taojava.lists; import java.io.PrintWriter; /** * Some simple experiments with SimpleArrayLists. */ public class SALExpt { public static void main(String[] args) throws Exception { PrintWriter pen = new PrintWriter(System.out, true); SimpleListExpt.expt(pen, new SimpleArrayList()); SimpleListExpt.failFastExpt(pen, new SimpleArrayList()); } // main(String[] } // SALExpt