Help for this page

Select Code to Download


  1. or download this
    sub fact {
        my($n, $a) = @_;
    ...
        @_ = ($n-1, $n*$a);
        goto &fact;
    }