RECENT ENTRIES
Matt S. Trout has an interesting blog post about Perl call semantics. There are a number of things in there I was unaware of. Of particular interest to me is that this works:
my $undef = undef;
my $code = sub { "foo" };
$undef->$code; # returns "foo"
Apparently when the right hand side of the '->' is a coderef there is no method lookup. Very interesting.
OTHER SITES