in reply to Use of Uninitialized Value- Multiple Errors
is undefined at the time you are getting those messages.$breakpoint{$chr}{$i}
The way I would debug that is to use the perl debugger:
perl -d <your-script>
and add a "conditional breakpoint" at that line:
once the debugger is stopped , you can examine("x") the values in $chr, $i etc, and analyze why they are not what you expect.b 132 !defined($breakpoint{$chr}{$i})
"It's ten o'clock... Do you know where your AI programs are?"
|
|---|