Help for this page

Select Code to Download


  1. or download this
    {
       no strict 'refs';
       ...
    }
    # Previous setting resumes after curlies.
    
  2. or download this
    # Name of the function to wrap.
    my $sub_name = '...';
    ...
    
    # Replace function with its wrapper.
    { no warnings 'redefine'; *$sub_glob = $wrapper; }