Merge pull request #276 from anacdf/master

new java helloworld code
This commit is contained in:
Luke Oliff
2018-10-08 09:46:34 -07:00
committed by GitHub
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");
}
}