- or download this
sub initialize {
return shift->call_super_before(\@_, sub {
...
return;
});
}
- or download this
my($_BAR) = 1;
sub foo {
...
return;
});
}
- or download this
package T1;
sub s1 {print("T1:s1\n")}
...
exists($T2::{s1}) && die('not here');
T3->s1;
exists($T2::{s1}) && die('here');