public class HelloWorld
{
public static void main( String args[] )
{
System.out.println( "Hello World!" );
}
}
When this is compiled (using "javac") and run using the Java interpreter,
the following output is produced:
Hello World!