An array on the left of a list assignment receives all remaining initializers in the list on the right side of a list assignment : Array Assignmengt « Array « Perl






An array on the left of a list assignment receives all remaining initializers in the list on the right side of a list assignment

   

@array = qw( zero one two three four five six seven eight nine );
print "@array\n\n";


( $first, @array2, $second ) = ( 1 .. 8 );
print "\$first = $first\n";
print "\@array2 = @array2\n";
print "\$second = $second\n";

   
    
    
  








Related examples in the same category

1.Put one array into another array as an element
2.Put one array into itself
3.Adding two arrays together
4.Adding more elements to an array
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