fork download
  1. <?php
  2.  
  3. print(fact(6));
  4.  
  5. function fact (int $x) {
  6. return ($x === 1) ? 1 : $x * fact($x - 1);
  7. }
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
720