/**
* The HelloWorldApp class implements an application that
* simply displays "Hello World!" to the standard output.
* save as text file and then open using the TextPad. Then save as Java file.
*/
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!"); //Display the string.
}
}