in reply to Re: Setting up a hash in a linear search through XML
in thread Setting up a hash in a linear search through XML

Many thanks for this and to both of you for explaining where I've gone wrong so I can learn from it.
  • Comment on Re^2: Setting up a hash in a linear search through XML

Replies are listed 'Best First'.
Re^3: Setting up a hash in a linear search through XML
by JadeNB (Chaplain) on Oct 30, 2008 at 19:09 UTC
    It should be noted that, despite the errors we've pointed out, you did one thing very much right: You started with use strict; use warnings;. I'd be willing to bet that that played some role in helping you remember the my %act declaration, so already you've seen the usefulness of it.