This commit is contained in:
woozu-shin
2023-10-12 14:44:09 +09:00
commit 1e39a6fb26
62 changed files with 2945 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");
}
}
}