Help for this page

Select Code to Download


  1. or download this
    use vars qw( $error );
    
    sub do_lots {
    ...
        return $error if $error;
        # ... as necessary
    }
    
  2. or download this
        my $result;
        $result = mangle_once(%hash);
        return $error unless defined $result;
        # et cetera