Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my %WORD = 
    ...
              'AALIYAH' => 'AARON',
              'ABBE' => 'ABBEY'
            };
    
  2. or download this
    my @names = ('AALIYAH', 'AARON', 'ABBE' , 'ABBEY', 'ABBI', 'ABBIE', 'A
    +BBIGAIL', 'ALEX');
    my %WORD;
    @WORD{@names} = ();
    ...