Help for this page

Select Code to Download


  1. or download this
    use diagnostics;
    warn "row=$row col=$col row->[col]=", $row->[$col], ";\n";
    __END__
    ...
    Use of uninitialized value $col in array element at - line 1 (#1)
    Use of uninitialized value in warn at - line 1 (#1)
    row= col= row->[col]=;
    
  2. or download this
       $SIG{__WARN__} = \&warn_trap;
       $SIG{__DIE__} = \&death_trap;
    ...
    
    sub splainthis ...
        print THITHER "$orig (#$old_diag{$_})\n";