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
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