2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/x10/hello-world.x10

6 lines
156 B
Text
Raw Normal View History

2014-03-09 16:38:27 +01:00
// file HelloWorld.x10
public class HelloWorld {
2014-03-11 13:58:42 +01:00
public static def main(args:Rail[String]) {
2014-03-09 16:38:27 +01:00
x10.io.Console.OUT.println("Hello, World");
}
}