13 lines
263 B
Java
13 lines
263 B
Java
package sleepers;
|
|
|
|
public class Sleeper1 {
|
|
|
|
// NB they are milliseconds
|
|
public static void main(String[] args) throws InterruptedException {
|
|
System.out.println("sleep");
|
|
|
|
Thread.sleep(1000);
|
|
|
|
System.out.println("wake up");
|
|
}
|
|
}
|