/*
 * Hello.java by Richard J. Davies
 * from `Introductory Java for Scientists and Engineers'
 * chapter: `Getting Started'
 * section: `Your First Program'
 *
 * This program simply prints `Hello world in Java' to the screen. It is
 * intended as a first program and to be used to explain the compilation
 * process.
 */
public class Hello
{
  public static void main(String[] argv)
  {
    // Print out the traditional
    // 'Hello world' message

    System.out.println("Hello world in Java");
  }
}

