/** This is the driver for the shopping list program. */ import java.io.FileNotFoundException; public class Driver { /** Our main() function outlines the 3 steps for the program: * make a shopping list; sort the list, and then print it. */ public static void main(String [] args) throws FileNotFoundException { ShoppingList myList = new ShoppingList(); myList.sortList(); myList.printList(); } }