// while2 // the loop that never works // (don't do this) public class while2 { public static void main(String[] args) { while(false) // System.out.println("Good luck trying to print this."); // Actually, try removing the comment above! } }