in reply to Re: Re: Calling sub's: return true
in thread Calling sub's: return true

Using EXPORT_OK with Exporter lets you not only control which subroutines 'pollute' the caller's namespace, it is also self-documenting which subroutines get imported and where they come from when you say:
use MyFunctions qw(function1 function2 etc);
Any subs you don't want imported due to namespace collisions you can still call with MyFunctions::function(...)