Help for this page

Select Code to Download


  1. or download this
    my @first_array = @{$array1[0]};
    print @first_array;
    
  2. or download this
    foreach my $array_ref (@array1) {
        print @{$array_ref};
    }