in reply to Re: How to build a hash?
in thread How to build a hash?

Trust us. We're sure it'll work :)

If you don't believe us then why not write a little test program.

my %hash; $hash{one} = 1; $hash{two} = 2; $hash{three} = 3; foreach (keys %hash) { print "$_ -> $hash{$_}\n"; }
--
<http://www.dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg