fork download
  1. <?php
  2. hello(); // OK
  3.  
  4. function hello()
  5. {
  6. echo "Hello World!\n";
  7. }
  8. ?>
Success #stdin #stdout 0.02s 24044KB
stdin
Standard input is empty
stdout
Hello World!