Re: Autovivification / anonymous array questions

2006-07-20 Thread Tom Phoenix
On 7/20/06, Brian Volk <[EMAIL PROTECTED]> wrote: } elsif (/^s+(\S.*)/) { # a provision That pattern begins by matching an 's' at the start of the line, but that's not what you want. Hope this helps! --Tom Phoenix Stonehenge Perl Training -- To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Autovivification / anonymous array questions

2006-07-20 Thread Rob Dixon
Brian Volk wrote: > > I have a couple of questions from chapter 4 in the Alpaca book. > > Everything is working fine but I keep getting "I don't understand > blue_shirt" whether I create the anonymous array w/ > > $provisions{$person} = [] unless exists $provisions{$person}; > > Or if I comment ou

Autovivification / anonymous array questions

2006-07-20 Thread Brian Volk
Hello~ I have a couple of questions from chapter 4 in the Alpaca book. Everything is working fine but I keep getting "I don't understand blue_shirt" whether I create the anonymous array w/ $provisions{$person} = [] unless exists $provisions{$person}; Or if I comment out the above l