RE: add hash to hash of hash

2001-12-03 Thread Bob Showalter
> -Original Message- > From: Mark Hanson [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 03, 2001 4:42 PM > To: [EMAIL PROTECTED] > Subject: add hash to hash of hash > > > Hi, > > Still more hash questions: > > using the example in chap

RE: add hash to hash of hash

2001-12-03 Thread John . Brooking
L PROTECTED] > Subject: add hash to hash of hash > > > Hi, > > Still more hash questions: > > using the example in chapter 9 of Programming Perl: > > %HoH = ( > flintstones => { > husband=>"fred", > pal

add hash to hash of hash

2001-12-03 Thread Mark Hanson
Hi, Still more hash questions: using the example in chapter 9 of Programming Perl: %HoH = ( flintstones => { husband=>"fred", pal=>"barney", }, ); how can dynamically add another hash to %HoH? In Programming Perl, they have a hard coded example