/* Description: To say hello to whoever runs the applications Author: Unknown? Date: 1997 */ class HelloWorld { /*The main method is always called automatically*/ public static void main (String args[]) { System.out.println("Hellow World!"); //use the Java class System to //print out the message. } }