new java helloworld code

This commit is contained in:
Ana Carolina
2018-10-07 18:10:52 -03:00
parent 4da95e9a22
commit b788143939
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// LANGUAGE: Java
// AUTHOR: Ana Carolina
// GITHUB: https://github.com/anacdf
public class HelloWorld {
public static void main(String[] args) {
System.out.print("Hello, World");
}
}