Rust Soundex Implementation
Performs Soundex calculation on a string passed in
Examples
use soundex;
let code: String = american_soundex;
Performs Soundex calculation on a string passed in
use soundex;
let code: String = soundex::american_soundex("Sirname".to_string());