fork download
  1. class Main
  2. {
  3.  
  4. public static void main(String args[])
  5. {
  6.  
  7. boolean boo = true;
  8. if( !((boo) ? (boo = !boo) : boo))
  9. System.out.println(boo);
  10.  
  11. }
  12. }
Success #stdin #stdout 0.02s 245632KB
stdin
Standard input is empty
stdout
false