in reply to Re^4: Parsing hash from XML::Simple
in thread Parsing hash from XML::Simple

The built-in perl debugger is particularly useful in learning, and testing data structure access.

Run like this:

perl -d your-program-name.pl
It has a "h" (help) command to get you started.

Basically, you will be using the "x" (Examine) command to look at the data.

See perldebug for details.

        This is not an optical illusion, it just looks like one.