1public class SleepThingy {
2 public static void main(String[] args)
3 throws InterruptedException {
4 // the Thread.sleep function throws an InterruptedException
5 for (int i = 1; i < 11; i++) {
6 System.out.println(i);
7 Thread.sleep(1000); // sleep 1000 ms or 1 sec
8 }
9 }
10}