HelloWorld3 Applet

This applet writes Hello World on the screen.

import java.applet.Applet ;
import java.awt.* ;


public class HelloWorld3 extends Applet {

   public void init() {
   }

   public void paint(Graphics gc) {
      gc.drawString("Hello World", 100, 100) ;
   }

}