1 package com.twister;
2 public class NoIf {
3
4 public static void main(String[] args) {
5 if(true){}
6 System.out.println("Print This");
7 noPrint:{
8 if(true){break noPrint;}
9 System.out.println("Print This - Not!");
10 }
11 if(true){}
12 System.out.println("Print This");
13 }
14 }