Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Perl inheritance
- my $class = 'My::Package';
- my $file = $class; # Or:
- $file =~ s{::}{/}g; # eval "require $class;" or die $@;
- $file .= '.pm'; #
- require $file; #
- if ($class->isa('My::Package::Parent')) {
- ...
- }
Advertisement
Add Comment
Please, Sign In to add comment