2016-12-27 08:10:47 -08:00

10 lines
198 B
Plaintext

/** 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.
}
}