Help for this page

Select Code to Download


  1. or download this
    my $h_b = {};
    my $x   = eval {
    ...
    } // 'unknown';
    
    print $x;
    
  2. or download this
    sub catch_undef (&) {
        my $code_ref = shift;
    ...
            $code_ref->()
        };
    }