System.out.println("Starting..."); // So what REALLY happens if a for loop's test condition is // never satisfied. for (int i=0; i<0; i++) System.out.println("Should not get here "); System.out.println("All done.");