
/**
 *  Using arrays 
 * 
 *
 * @author Kathryn
 * @version February 2007
 * 
 * 1) Declare an array of integers for the inventory tracking
 * 2) Array of strings for the names
 * 3) Initialize both
 * 4) Print them out
 * 
 * 5) Motivate that this structure is not the best and that we
 *    would probably like an array that links the name and inventory
 *    together --- go over other array drawbacks (in power point)
 */
public class Inventory
{
    public static void main(String[] args)
    {
        
    }
}
