fork download
  1. <?php
  2.  
  3. echo 0x0+1;
  4. echo 0x0+2;
  5. echo 0x0+3;
  6. echo 0x0+4;
  7.  
  8. echo 0b0+1;
  9. echo 0b0+2;
  10. echo 0b0+3;
  11. echo 0b0+4;
  12.  
  13. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
12341234