in reply to Help with multidimensional sorting on arrays of hashed arrays

One thing that continues to help me in my struggle to master nested data structures is this
  • Comment on Re: Help with multidimensional sorting on arrays of hashed arrays

Replies are listed 'Best First'.
Re: Re: Help with multidimensional sorting on arrays of hashed arrays
by petral (Curate) on Mar 10, 2001 at 04:03 UTC
    Especially it's suggestion to use the debugger.
    Roughly:
    > perl -dw prog.pl Loading DB routines from perl5db.pl Enter h or `h h' for help. main::(prog.pl:3): my $firstline; DB<1> c 123 main::(prog.pl:123): %hololoh # has just been loaded w/ first value +s DB<1> x %hololoh 0 HASH(0x3e5e54) ...
    It's much easier when you can actually look at it with some initial values. (It even makes it easier to get your debugging print statements right.)

    p