Help for this page

Select Code to Download


  1. or download this
    eval { main(); 1; };
    if (my $error = $@)
    ...
      exit(error_no_success());
    }
    exit(error_success());
    
  2. or download this
    my $error = undef;
    eval { main(); 1; } or $error = $@;
    ...
      exit(error_no_success());
    }
    exit(error_success());