HelloWorld2 Applet

The text Hello World appears on the console (open your java console to see the text).

The program text is:


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


public class HelloWorld2 extends Applet {

   public void init() {
      System.out.println("Hello World") ;
   }

}