Help for this page

Select Code to Download


  1. or download this
    my $errorlog='';
    if (...) {
    ...
    } else {
        say 'All done, bye.';
    }
    
  2. or download this
    # We don't need that. It's just wrong: my $errorlog='';
    if (...) {
    ...
        warn 'Outch";
    }
    say "All done, bye.";
    
  3. or download this
    if (...) {
        die 'Input data is f*cked up beyond repair. Died to prevent a cras
    +h';
    }