http://www.perlmonks.org?node_id=670496


in reply to Code style advice: where to put "use" statements?

The original implementor may have been thinking about moving some_function to a module. In any event, I'd move the statement to the top of the source as

use SomeModule;  # employed solely by sub some_function as of YY/MM/DD

YMMV.