in reply to conditional definition of variables

my $foo = 1 does stuff in two parts:

That's the reason for your contradictory error messages

Here's what perlsyn has to say about it:

NOTE: The behaviour of a my statement modified with a statement modifier conditional or loop construct (e.g. my $x if ... ) is undefined. The value of the my variable may be undef, any previously assigned value, or possibly anything else. Don't rely on it. Future versions of perl might do something different from the version of perl you try it out on. Here be dragons.

Replies are listed 'Best First'.
Re^2: conditional definition of variables
by stephanm (Sexton) on Aug 23, 2008 at 14:21 UTC
    I see. That seems to imply that the second "my" statement is executed unconditionally.
    The conditionality of the statement only applies to the run time part.
    Makes sense now. Thanks.