On Friday 01 February 2008 15:18:54 Roderick A. Anderson wrote:
> Eric Wilhelm wrote:
> > END {warn join("\n", sort keys %INC);}
> Interesting. So each 'use Package' statement may modify %INC?
Any successful require (implied by a use) will add an entry to %INC, where the
key is the path to the .pm file loaded by that require.
-- c