Help for this page

Select Code to Download


  1. or download this
    my $fact;
    $fact = sub {
    ...
      return $n if $n <= 1;
      return $n*fact($n-1);
    }