2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/x10/hello-world.x10
Martin Thoma 25732f4421 misc
2014-03-09 16:38:27 +01:00

6 lines
No EOL
160 B
Text
Executable file

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