Help for this page

Select Code to Download


  1. or download this
    %hash = (name => foo,
             list => (1, 2, 3));
    @array = $hash{list};
    foreach(@array){print "$_\n";}
    
  2. or download this
    %hash = (name => foo,
             list => \(1, 2, 3));
    $ref = $hash{list}
    @array = @$ref;
    foreach(@array) { print }