Multiple ways to inheritance in Perl
Today, a co-worker who started working at the company recently asked
me what was preferred: use base
or use parent
. He preferred the
latter, and so did I. I linked to an article by Mark Gardner:
Multiple ways to inheritance in
Perl
which also recommends use parent
over use base
.