fork download
  1.  
  2. public class Main {
  3. // OrAndExample
  4.  
  5. public static void main (String[] args) {
  6. int time = 21;
  7. boolean sleepy = true;
  8.  
  9. if (time > 23 || sleepy) {
  10. System.out.println("Its time to sleep");
  11. }
  12.  
  13. }
  14. }
  15.  
Success #stdin #stdout 0.07s 54588KB
stdin
Standard input is empty
stdout
Its time to sleep