public class MainClass { public static void main(String[] argv) { for (;;) { System.out.println("before the break"); break; } } }
before the break