/* Driver.java for shopping list program. * Create a shopping list and then print it out. * All the details are implemented in the other source files. * One note - it's usually nice to separate the input and output * with a blank line. This is why I put \n at beginning of output. */ import java.io.FileNotFoundException; public class Driver { public static void main(String [] args) throws FileNotFoundException { ShoppingList list = new ShoppingList(); System.out.printf("\n%s\n", list.toString()); } }