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