The standard way is to put those "global" routines in their own module (that is, in Some.pm file with package Some;).
That way you can either refer to them directly, as Some::function() or you can use Exporter to export them to other namespaces that want them (and they will also have some control over which functions/variables they'll import, if you set up Exporter correctly).
| [reply] |