RosettaCodeData/Task/Soundex/Cache-ObjectScript/soundex.cos

10 lines
143 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
Class Utils.Phonetic [ Abstract ]
{
ClassMethod ToSoundex(String As %String) As %String [ Language = mvbasic ]
{
Return Soundex(String)
}
}