1 2 3 4 5 6 7 8 9 10
# Rust Soundex Implementation Performs Soundex calculation on a string passed in ## Examples ```rust use soundex; let code: String = soundex::american_soundex("Sirname".to_string()); ```