Re: Hashes and scope

2006-04-20 Thread Allister
On Thursday 20 April 2006 21:48, Tom Phoenix wrote: > On 4/20/06, Allister <[EMAIL PROTECTED]> wrote: > > %qnums_quests = ($quest_number, $quest_string); > > The assignment operator replaces the entire variable on the left with > the value on the right. If you wish to modify the hash, instead of >

Re: Hashes and scope

2006-04-20 Thread Tom Phoenix
On 4/20/06, Allister <[EMAIL PROTECTED]> wrote: > %qnums_quests = ($quest_number, $quest_string); The assignment operator replaces the entire variable on the left with the value on the right. If you wish to modify the hash, instead of replacing everything it contains, you probably want a stateme