The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# ============================================================================
package Text::SomePhoneticAlgorithm;
# ============================================================================

use strict;
use warnings;

sub phonetic {
    return uc($_[0]);
}

1;