Help for this page

Select Code to Download


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