summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.x10
blob: 9cca164c1976fb5dd682d7672c069fbfd68ab870 (plain)
1
2
3
4
5
6
7
8
9
/** 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.
    }

}