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: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/