in reply to Re: The Null Mull (or, when OO needs more O)
in thread The Null Mull (or, when OO needs more O)
Maybe the code isn't actually affecting SV_UNDEF as you think ...BEGIN { &Internals::SvREADONLY(\undef, 0); undef = 42; &Internals::SvREADONLY(\undef, 1); } my $x = undef; print( ((undef) ? 'True' : 'False'), $/); print( ((defined undef) ? 'True' : 'False'), $/); print( (($x) ? 'True' : 'False'), $/); print( ((defined $x) ? 'True' : 'False'), $/); -------------- True True False False
Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: The Null Mull (or, when OO needs more O)
by hardburn (Abbot) on Nov 29, 2004 at 19:07 UTC | |
by dragonchild (Archbishop) on Nov 29, 2004 at 19:29 UTC |