//++
//
// Program:
// HELLO_WORLD_JAVA
//
// Purpose:
// Hello world written in Java
//
// History:
// 01-Jul-2001 by by Simon L. Jackson
// Initial version
//
//--
class hello_world_java {
public static void main ( String[] args ) {
System.out.println ( "Hello World from Java" );
} // method main
} // class hello_world_java