Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    use v5.40;
    ...
    sub broken_function($val) {
        die("Bla") unless($val == 10);
    }
    
  2. or download this
    $ perl dietest.pl 
    Bla at dietest.pl line 14.
    
  3. or download this
    #!/usr/bin/env perl
    
    use v5.40;
    ...
    sub broken_function($val) {
        croak("Bla") unless($val == 10);
    }
    
  4. or download this
    $ perl dietest.pl 
    Bla at dietest.pl line 16.
        main::broken_function(17) called at dietest.pl line 11
        main::do_something() called at dietest.pl line 7
    
  5. or download this
    ...
    use Carp qw(croak);
    ...
        
        return $rows_inserted;
    }