Hello everyone, 

I have:

@one = qw(A B C D);
@two = qw(E F G H);

I want to build a multidimensional array from the above arrays.  I want
to put @one in the first "column" of the array.  I want to put @two in
the second "column" of the array.

I want the resulting MDA to look like:

@mda = (
         [A][E],
         [B][F],
         [C][G],
         [D][H]
);

Any ideas?  Sorry if this is not clear.

Kevin
-- 
Kevin Old <[EMAIL PROTECTED]>


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to