You know your day has taken a horrible
2012-05-04 18:41:08.313007+00 by Dan Lyke 1 comments
You know your day has taken a horrible turn when the conversation turns to Perl's difference between \[]->[0]
and \${undef}
2012-05-04 18:41:08.313007+00 by Dan Lyke 1 comments
You know your day has taken a horrible turn when the conversation turns to Perl's difference between \[]->[0]
and \${undef}
[ related topics: Perl Open Source hubris ]
comments in ascending chronological order (reverse):
#Comment Re: made: 2012-05-04 19:18:41.438747+00 by: Dan Lyke
And in case you care:
$a = \${undef}; $b = \${undef}; ${$a} = "foo";
and ${$b} eq ${$a}
.