in reply to Re^3: package compiling
in thread package compiling

I just tried...
#!/usr/bin/perl END { say for sort values %INC; }
And got nothing?

Replies are listed 'Best First'.
Re^5: package compiling
by FunkyMonk (Bishop) on Apr 13, 2011 at 20:46 UTC
    That's because you didn't use any modules!

    Try this instead

    #!/usr/bin/perl use 5.010; use List::Util; END { say for sort values %INC; }