Help for this page

Select Code to Download


  1. or download this
    print tail_factorial(1, 8);
    
  2. or download this
    sub tail_factorial {
        my ($n, $total) = @_;
    ...
        @_ = ($n - 1, $total * $n);
        goto &tail_factorial;
    }