Put one array into another array as an element : Array Assignmengt « Array « Perl






Put one array into another array as an element

   


#!/usr/bin/perl -w

use strict;

my @array1 = (1, 2, 3);
my @array2;
@array2 = (@array1, 4, 5, 6);
print "@array2\n";

   
    
    
  








Related examples in the same category

1.Put one array into itself
2.Adding two arrays together
3.Adding more elements to an array
4.An array on the left of a list assignment receives all remaining initializers in the list on the right side of a list assignment
5.Add elements to @array by referring to nonexistent element 3.
6.Adding array items from one array to another array
7.Assign returning array value from a function to an array
8.Assigning one array variable to another variable
9.Perform list assignments and display results