Hi, what's the better way to write a recursion in perl's class?
sub my_recursion {
my $self = shift;
....
if (...) {
$self->my_recursion;
}
}
this one?
thanks.
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/
