in reply to Odd hash problem.
Whenever you see anything strange with you code, your first debugging step should ALWAYS be to run with warnings enabled ('use warnings' or -w flag to Perl), assuming you aren't running with them turned on to begin with. Bonus if your code compiles cleanly with strict turned on too (as it should!). With warnings enabled, you would have seen this:
Reference found where even-sized list expected at script line n.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Odd hash problem.
by onion2k (Novice) on Jan 02, 2001 at 19:49 UTC | |
by Fastolfe (Vicar) on Jan 02, 2001 at 19:56 UTC |