// CS101 Lab 7 // Lab7.java // Ron Cytron // This creates a Startup object and starts it running. // You should not need to modify this file. import java.applet.Applet; public class Lab7 extends Applet { public static boolean isApplet = false; public void init() { String args[] = new String[1]; args[0] = ""; isApplet = true; main(args); } public static void main(String args[]) { System.out.println( "Starting Lab7..."); (new Startup()).run(); } }