<?php print(fact(6)); function fact (int $x) { return ($x === 1) ? 1 : $x * fact($x - 1); }
Standard input is empty
720
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!