- or download this
my $class = 'Very::Long::Class::Name';
$class->method;
- or download this
my $pkg = 'Very::Long::Package::Name';
$pkg::sub;
- or download this
use strict;
use warnings;
...
my $func_str = $pkg . "::foo( 'param' );";
eval $func_str; # [param]
}