mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
6 lines
160 B
Text
6 lines
160 B
Text
|
// file HelloWorld.x10
|
||
|
public class HelloWorld {
|
||
|
public static def main(args: Array[String](1)){
|
||
|
x10.io.Console.OUT.println("Hello, World");
|
||
|
}
|
||
|
}
|