in reply to Re: printing @INC contents and Command line interpretation
in thread printing @INC contents and Command line interpretation

I tend to favor the join myself for one-liners like that, but I always include an empty item after @INC so the last line will get a newline on it.
perl -e 'print join "\n", @INC, ""'
The variant that uses "for @INC" avoids that question; perhaps I may need to make a style change. I wonder how they compare for performance, when run in a tight loop?
push @things_to_do, performance_test( $foreach, $join );