in reply to package function calling

As an aside, for my own benifit I always use EXPORT_OK in the module.

The script then needs to be:

use MyPackage::MySubPackage qw(some_function);
I find this helps show more clearly what has come from where.

John