0 votes
in Perl by
Write syntax to add two arrays together in perl?

1 Answer

0 votes
by

@arrayvar = (@array1,@array2);

To accomplish the same, we can also use the push function.

...