Help for this page

Select Code to Download


  1. or download this
    {
      package Foo;
    ...
    };
    
    print($@); # Woof
    
  2. or download this
    $@=undef;
    { local $@; ... }
    # $@ is undef here, no matter what "..." is.