Help for this page

Select Code to Download


  1. or download this
    
    my @array = ("a","b","c","d","e");
    ...
    
    $hash{'key'} = @array;
    
  2. or download this
    while (my ($key, @value) = each(%hash)){
    
       my @extracted_array = @value;
    
    }