in reply to Alternative ways to fully qualify subroutine names
my $sub = $pkg->can('foo'); $sub->('param'); # or simply ... $pkg->can('foo')->('param'); [download]
Is this a good idea? Probably not. I'd have to wonder why you want to do this first.