// "Move condition to loop" "true-preview" class Main { public static void main(String[] args) { int i = 0; while(true) { if (i < 14) { i++; } else { break; } System.out.println("I'm doing two things in this loop"); } } }