// CS101 Lab 8 // Lab8.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 Lab8 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 Lab8..."); (new Startup()).run(); } }