langcmp/java/sleeptest.java

6 lines
135 B
Java
Raw Normal View History

2023-08-24 08:50:56 +02:00
public class sleeptest {
public static void main(String[] argv) throws InterruptedException {
Thread.sleep(60000);
}
}