5 lines
68 B
Perl
5 lines
68 B
Perl
package Collie;
|
|
use Dog;
|
|
@ISA = qw( Dog );
|
|
#functions go here...
|
|
1;
|