Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Pygments / examplefiles / example.x10
Size: Mime:
/** 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.
    }

}