//----------------------------------------------------------------------------
//
// HelloWorld.java
//
// written by:    Simon Parsons
// last modified: 22nd June 2012
//

// The standard first program in Java
//
// Note that the class name has to be the same as the filename.

public class HelloWorld{
    public static void main(String[] args) {
	System.out.println("Hello World!");
    }
}
