- or download this
(my $modname = $module . '.pm') =~ s,::,/,g;
require $modname;
- or download this
for my $var (@import_list)
{
no strict 'refs';
*{$package . '::' . $imports{$var}} = *{$module . '::' . $var};
}
- or download this
sub import {
my $class = shift;
...
}
}
}