Initial updates

This commit is contained in:
Roy Kim
2018-05-11 18:30:45 +09:00
commit c49e5665fa
40 changed files with 1375 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
public class Sample {
public static void main(String[] args) {
System.out.println("Sample Java Start");
try {
while (true) {
Thread.sleep(1000);
}
}
catch (java.lang.InterruptedException e) {
System.out.println("Test Finished");
}
}
}