RosettaCodeData/Task/Inheritance-Single/Perl/inheritance-single-2.pl
2023-07-01 13:44:08 -04:00

5 lines
71 B
Perl

package Dog;
use Animal;
@ISA = qw( Animal );
#functions go here...
1;