mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
6 lines
No EOL
156 B
Text
Executable file
6 lines
No EOL
156 B
Text
Executable file
// file HelloWorld.x10
|
|
public class HelloWorld {
|
|
public static def main(args:Rail[String]) {
|
|
x10.io.Console.OUT.println("Hello, World");
|
|
}
|
|
} |