1 import java.awt.*;
2 import java.applet.*;
3
4
5 public class StupidStart {
6
7 public static void main(String[] args) {
8 Frame frame = new Frame("Jome AppletTest");
9 Applet applet = new AppletTest();
10 frame.add(applet);
11 applet.init();
12 frame.show();
13 }
14
15
16 }