Re: dynanic declaration of arrays

2003-06-25 Thread Jenda Krynicky
From: Tim McGeary <[EMAIL PROTECTED]> > Can I dynamically declare an array by doing something like: > > for (keys %codes_hash) { > my @$_; > { > > so that I have an array for each code in my hash that I can push data > to whatever array is associated with the code that I searching on at > that i

Re: dynanic declaration of arrays

2003-06-25 Thread Sudarshan Raghavan
Tim McGeary wrote: Can I dynamically declare an array by doing something like: for (keys %codes_hash) { my @$_; { so that I have an array for each code in my hash that I can push data to whatever array is associated with the code that I searching on at that iteration? What you are referr