Soundex
NAME
Algorithm::Soundex - Soundex Algorithms
DESCRIPTION
Currently this module contains the American Soundex algorithm, implemented in Perl 6.
If you would like to add other Soundex algorithms, Patches Welcome! No, they are *actually* welcome :)
SYNOPSIS
use v6;
use Algorithm::Soundex;
my Algorithm::Soundex $s .= new();
my $soundex = $s.soundex("Leto");
say "The soundex of Leto is $soundex";
AUTHOR
Jonathan "Duke" Leto - [email protected]