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