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"); } }