/* * Purpose: This application * creates an instance * of the Program class and * runs the start() metho * for lecture 18 slides * Author: Adriana Ferraro * Date: Semester 1, 2007 */ public class App { public static void main(String[] args) { Program lect = new Program(); lect.start(); } }