10 lines
198 B
Plaintext
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.
|
|
}
|
|
|
|
}
|