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