Help for this page

Select Code to Download


  1. or download this
     
    use Data::Dumper;
     my %WORD =
    ...
    my %WORD = ('AALIYAH', 'AARON', 'ALEX', 'ABBE', 'ABBEY', 'ABBI', 'ABBI
    +E', 'ABBIGAIL');
    print "SECOND HASH:\n";
    print Dumper(\%WORD);
    
  2. or download this
    FIRST HASH:
    $VAR1 = {
    ...
              'ABBEY' => 'ABBI',
              'ABBIE' => 'ABBIGAIL'
            };
    
  3. or download this
    for ( sort keys %WORD )
    {
        print "$_: $WORD{$_}\n"
    }