Help for this page

Select Code to Download


  1. or download this
    my %Words;
    
    ...
        }
    
    print "$_ => $Words{$_}\n" foreach (sort keys %Words);
    
  2. or download this
    abbrev => abrv
    abbreviate => abrvt
    ...
    while => whl
    wordlist => wrdlst
    words => wrds
    
  3. or download this
    sub Abbreviate
    {
    ...
        
    return wantarray ? @Result : join " ", @Result;
    }