BEGIN { sub test{ return "from test"; } } use Mypackage; sub { return [ 200, [ "Content-Type" => "text/html" ], [ test() ] ]; }; #### package Mypackage; ::test();