Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Use of Uninitialized Value- Multiple Errors

by NetWallah (Canon)
on May 28, 2019 at 17:36 UTC ( [id://11100656]=note: print w/replies, xml ) Need Help??


in reply to Use of Uninitialized Value- Multiple Errors

The most likely case is that
$breakpoint{$chr}{$i}
is undefined at the time you are getting those messages.

The way I would debug that is to use the perl debugger:
perl -d <your-script>
and add a "conditional breakpoint" at that line:

b 132 !defined($breakpoint{$chr}{$i})
once the debugger is stopped , you can examine("x") the values in $chr, $i etc, and analyze why they are not what you expect.

                "It's ten o'clock... Do you know where your AI programs are?"

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11100656]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (8)
As of 2024-04-20 00:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found