- or download this
package Thingy;
sub make_cog {
...
my $self = shift;
return MyCog->new(@_);
}
- or download this
package Thingy;
sub make_cog {
...
return Thingy::Cog->new(@_);
}
}
- or download this
sub make_class {
my ($class, $base_class) = @_;
...
...
}