In article <[EMAIL PROTECTED]> wrote "Jon Serra" 
<[EMAIL PROTECTED]>:

> Greetings,
> 
>         I have an array, each element will contain a reference to another array. How
> can I dynamically generate each of those references such that each reference is 
>unique. I am
> trying to create dynamic 2d arrays.  TIA JON

Is
my @array = map { [] } (1..$array_size);
or
my @array; push @array, [] for (1..$array_size);
what you want ?

Greetings,
Andrea

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to