The Java Program: 5-exceptional-puzzlers/puzzle-36/Indecisive.java

  1 public class Indecisive { 
  2     public static void main(String[] args) {
  3         System.out.println(decision());
  4     }
  5 
  6     static boolean decision() {
  7         try {
  8             return true;
  9         } finally {
 10             return false;
 11         }
 12     } 
 13 }