NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Maybe changing usage works (Score:1)
When you're saying
"perl -c Pippo.pm", you are compiling and running a package without a surrounding require, and then"use Pluto"works alright.Compare that with the output of
"perl -c -e 'use Pippo'". It seems more well behaved (and does not emit warnings).Workarounds (Score:1)
But it would be nice to be able to "perl -c" the file directly (as it's burned into my finger memory as well as my Vim configuration).
Oh, I forgot to post the workaround I use:
osfameron