Help for this page

Select Code to Download


  1. or download this
    push @{ $hash{"ef56"} }, {height => 2.6, color => 'red',  weight => 4}
    +;
    push @{ $hash{"ef56"} }, {height => 3.2, color => 'blue', weight => 5}
    +;
    
  2. or download this
    foreach my $item (@{$hash{"ef56"}}) {
      print $item->{height}, ' ', $item->{color}, ' ', $item->{weight}, "\
    +n";
    }