/* * Example HelloWorldApplet * Prints the message "Hello, World!" graphically */ import java.awt.*; import java.applet.Applet; public class HelloWorldApplet extends Applet { public void paint(Graphics g) { g.drawString ("Hello world!", 50, 30); } }