in t/htdocs/php/func3.php [30:35]
old_function factorial $n ( if ($n==0 || $n==1) { return 1; } else { return factorial($n-1)*$n; }