Hello World Applet from Sun Tutorial
Hello World Applet from Sun Tutorial
class HelloWorldApp {
public static void main (String args[]) {
System.out.println("Hello World!");
}
}
- Note args are of class String and needed even though helloWorldApp has no command line arguments