package other; sub hello { ... } package main; sub foo { # some magic here to make hello -> other::hello? $_[0]->(); } foo(sub { hello() });