fork(1) download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. boolean trueValue = Boolean.TRUE;
  6. boolean falseValue = Boolean.FALSE;
  7.  
  8. if(trueValue) {
  9. System.out.println("True");
  10. }
  11. if(falseValue) {
  12. System.out.println("False");
  13. }
  14. }
  15. }
Success #stdin #stdout 0.04s 320576KB
stdin
Standard input is empty
stdout
True