For more information including compatibility, examples and test cases, see https://github.com/petercrlane/r7rs-libs

0.1. Soundex: (import (slib soundex))

This implementation of the Russell Soundex algorithm is based on Knuth, Vol. 3 "Sorting and searching", pp.391-2: note, reexported by (robin text)

The soundex algorithm returns a code for a word, and equivalent sounding words should return equivalent codes:

> (soundex "pair")
"P600"
> (soundex "pare")
"P600"
> (soundex "rabbit")
"R130"
> (soundex "racket")
"R230"
> (soundex "smith")
"S530"
> (soundex "smythe")
"S530"