in reply to Re^2: How to get a reference to a superclass method?
in thread How to get a reference to a superclass method?
Um, why it works? Because perl syntax is perl syntax :)
$ perl -le " q/warn/->( 6,6 ) " Undefined subroutine &main::warn called at -e line 1. $ perl -le " sub warn { die @_ } q/warn/->( 6,6 ) " 66 at -e line 1.
Modern Perl, references quick reference /Re (tilly) 1: References quick reference
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to get a reference to a superclass method?
by mcdave (Beadle) on Feb 11, 2012 at 14:59 UTC | |
by Anonymous Monk on Feb 11, 2012 at 15:15 UTC |