Help for this page

Select Code to Download


  1. or download this
    sub Deb::func { print("Deb!\n"); }
    
    $obj = bless {}, 'Bar';
    $obj->Deb::func();
    
  2. or download this
    sub Foo::func { print("Foo!\n"); }
    
    ...
    
    $obj = bless {}, 'Bar';
    $obj->Deb::func();