in reply to strict.pm error

You probably have a statement in your code like:
my ($x, undef, $y) = something()...;
This should work in most versions of perl after 5.6.

What version of perl are you using (run "perl -v").

A workaround would be to change the "undef" to a name like "$unused_1".

            "XML is like violence: if it doesn't solve your problem, use more."

Replies are listed 'Best First'.
Re^2: strict.pm error
by greenhornks (Initiate) on Dec 22, 2011 at 13:05 UTC
    This was exactly the problem. I was running an older version of perl. Thanks a lot for your help