Hi,

I tried zip under pugs.

    my @odd = (1, 3, 5, 7);
    my @even = (2, 4, 6, 8);
    my @bothA = zip @odd, @even;
    print @bothA;

This code prints 12345678 as expected.

After parenthesis were used to group zip arguments, results changes
to 13572468. Is it right?
    
--
___________________________________________________________________________
Andrew, [EMAIL PROTECTED]
___________________________________________________________________________

Reply via email to