// define a new subclass of Applet called HelloWorld public class HelloWorld extends java.applet.Applet { // define a new method with one method variable public void paint (java.awt.Graphics g) { g.drawString ("Hello Paul!!!", 200, 100); } }