Login
Remember
Register
Ask a Question
Write syntax to add two arrays together in perl?
0
votes
asked
Jul 26, 2023
in
Perl
by
rahuljain1
Write syntax to add two arrays together in perl?
perl-arrays
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 26, 2023
by
rahuljain1
@arrayvar = (@array1,@array2);
To accomplish the same, we can also use the push function.
...