Help for this page

Select Code to Download


  1. or download this
    my $error;
    {
    ...
    if (defined $error) {
        ...; # clean up mess and/or warn the user
    }
    
  2. or download this
    {
        do {
    ...
        }
        ...; # clean up mess
    }