Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        E => { F => 1, G => "3E", H => 5 },
    );
    print "$_->{G} " for (values %hash);
    
  2. or download this
    3A 3D 3C 3E 3B
    
  3. or download this
    print join " ", map {values %{$_}, "-"} values %hash;
    
  4. or download this
    5 1 3A - 5 1 3D - 5 1 3C - 5 1 3E - 5 1 3B -