// The code of the HelloApplet applet paints a string.
// Barry Cornelius, 20 June 2000
import java.applet. Applet;
import java.awt.    Graphics;
public class HelloApplet extends Applet
{
   public void paint(Graphics pGraphics)
   {
      pGraphics.drawString("Hello world", 50, 25);
   }
}
