feat: finish multi lnaguage support

This commit is contained in:
Bogdan Lyashenko
2019-02-09 21:13:41 +01:00
parent eed383522b
commit 8155ed3207
20 changed files with 202 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
public class HelloWorld {
// cc: main function
public static void main(String[] args) {
// Prints "Hello, World" to the terminal window.
System.out.println("Hello, World");
}
}