- or download this
my $full_pkg = "Test::".$pkg;
my $hello = $full_pkg->can('hello');
$full_pkg->$hello(...);
# Or: $hello->($full_pkg, ...);
- or download this
my $full_pkg = "Test::".$pkg;
$full_pkg->hello(...);
- or download this
$full_pkg->$method_name(...);