/** Example file for the X10 programming langauge (http://x10-lang.org).
 */
class Example {

    public static def main(Rail[String]) {
	Console.OUT.println("Hello World!"); // say hello.
    }

}
