RosettaCodeData/Task/Inheritance-Single/Perl/inheritance-single-2.pl

6 lines
71 B
Perl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
package Dog;
use Animal;
@ISA = qw( Animal );
#functions go here...
1;