Help for this page

Select Code to Download


  1. or download this
    use English qw(-no_match_vars);
    eval { die 'A horrible death' };
    print "Something died\n" if $EVAL_ERROR;
    
  2. or download this
    confess 'Some error happened because ' . $obj->foo . ' blew up';
    
  3. or download this
    sub mumble_path { join ", " => split '/' => (shift)>get_path }