fork(2) download
  1. class Main
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. a() && b();
  6. }
  7.  
  8. private static Boolean a(){
  9.  
  10. return true;
  11. }
  12.  
  13. private static Boolean b(){
  14.  
  15. return true;
  16. }
  17. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:5: not a statement
    a() && b();
        ^
1 error
stdout
Standard output is empty