leto/perl6-Algorithm-Soundex/lib/Algorithm/Soundex
perl6-Algorithm-Soundex src
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 - L<jonathan@leto.net>