RE: Adding to a Hash

2004-11-27 Thread Graeme St. Clair
to an earlier edition. Goodness knows why it didn't work, but I don't think I'll bother with it any more... -Original Message- From: Paul Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, November 26, 2004 9:32 PM To: Graeme St. Clair Cc: '[EMAIL PROTECTED]' Subject:

Re: Adding to a Hash

2004-11-26 Thread Paul Johnson
On Fri, Nov 26, 2004 at 06:19:28PM -0800, Graeme St. Clair wrote: > my %sname = qw { > COUNTRY_NAME Country > ... > }; > my %words2 = ( > "ORDER_NUMBER", "Order Number", > ... > ); > #%sname{keys %words2} = values %words2; > %sname = (%sname, %words2); > > I couldn't find a way to co