Help for this page

Select Code to Download


  1. or download this
    my $return = my::module::exit_routine();
    
    ...
    my %modifier = ( reverse_modifier => \&reverse_modifier );
    my $return = my::module::exit_routine(\%modifier);
    
  2. or download this
    my %revmod = eval { %{ $_[0] } }
    
  3. or download this
    my $log = LogSimple->new(_exit => my::module::exit_routine(\%modifier)
    + );
    $log->err("An error occured, _exit will happen before I exit but now I
    + want to force exit_routine to also use the \%modifier as well")
    
  4. or download this
    Package LogSimple
    ...
    ...
        exit $ERR
        }
    }