mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-18 02:56:30 +08:00
14 lines
335 B
Java
14 lines
335 B
Java
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");
|
|
}
|
|
}
|
|
} |