Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
// file HelloWorld.x10
public class HelloWorld {
    public static def main(args:Rail[String]) {
        x10.io.Console.OUT.println("Hello, World");
    }
}