jredburn has asked for the wisdom of the Perl Monks concerning the following question:
where _x is a function in S. Is this possible? Right now it looks for _x in M, which is not where it is, obviously. I would like to have M have no knowledge of the various scripts that will end up using it.sub x { return unless &_x; ...; &_x; }
|
|---|