home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Documents / JAVA Programming / examples / 06 / Break.class (.txt) next >
Encoding:
Java Class File  |  2000-09-08  |  561 b   |  13 lines

  1. class Break {
  2.    public static void main(String[] var0) {
  3.       boolean var1 = true;
  4.       System.out.println("Before the break");
  5.       if (!var1) {
  6.          System.out.println("This won't execute");
  7.          System.out.println("This won't execute");
  8.       }
  9.  
  10.       System.out.println("This is after b");
  11.    }
  12. }
  13.