Help for this page

Select Code to Download


  1. or download this
    use B::Deparse;
    
    ...
    
    $code = B::Deparse->new->coderef2text(\&subref);
    print "\nAfter editing &something:\n",$code;
    
  2. or download this
    Before editing &something:
    {
    ...
        my($self, $param) = @_;
        return _stuff($param);
    }