This commit is contained in:
loremwalker
2018-05-26 02:32:36 +08:00
commit a3f0cde1a9
34 changed files with 514 additions and 0 deletions

5
Test/HelloWorld.java Normal file
View File

@ -0,0 +1,5 @@
public class HelloWorld{
public static void main(String args[]){
System.out.println("HelloWorld");
}
}