Help for this page

Select Code to Download


  1. or download this
    use closefail qw(:standard);
    use closefail { die "I'm not feeling so well: $!" };
    
  2. or download this
    {
        use closefail;
        open my $thing, $what or die "...";
        # ...
    }   # <- still in effect as this block ends
    
  3. or download this
    {
        use closefail;
        {
    ...
            # ...
        }
    }