Help for this page

Select Code to Download


  1. or download this
    sub tail_factorial {
      my($total, $n) = @_;
    ...
        return tail_factorial($total * $n, $n - 1)
      }
    }
    
  2. or download this
    sub tail_factorial {
      my $total = shift; my $n = shift;
    ...
        goto &tail_factorial;
      }
    }
    
  3. or download this
    sub run_ops {
      my $self = shift;
    ...
        }
      }
    }