Help for this page

Select Code to Download


  1. or download this
    my $hash_w = { w => 100 };
    my $hash_x = { x => 200 };
    my $hash_y = {};   # no value, but in other cases it can have one
    my $hash_z = { x => 300 };
    
  2. or download this
    my @values=map values  %$_, $hash_w, $hash_x, $hash_y,  $hash_z;