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

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