Help for this page

Select Code to Download


  1. or download this
        sub one::DESTROY {
            die "foo\n";
    ...
        say "\$\@ = $@";
        __END__
        $@ =     (in cleanup) foo
    
  2. or download this
        sub one::DESTROY {
            local $@;
    ...
        say "\$\@ = $@";
        __END__
        $@ =