in reply to Re: use dirty .pm
in thread use dirty .pm

If i do that, $doxydocs contains the value "1", and i still can't access the data. Even when i do this:
my $a = do "$ARGV[0]/DoxyDocs.pm"; print Dumper($doxydocs), "\n";
I get the error that $doxydocs is empty.

Replies are listed 'Best First'.
Re^3: use dirty .pm
by betterworld (Curate) on Feb 21, 2005 at 10:49 UTC
    In your example, $doxydocs is in fact empty, but $a is not. Try print Dumper($a)."\n";