RosettaCodeData/Task/Soundex/Haskell/soundex.hs

7 lines
148 B
Haskell
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
import Text.PhoneticCode.Soundex
main :: IO ()
main =
mapM_ print $
((,) <*> soundexSimple) <$> ["Soundex", "Example", "Sownteks", "Ekzampul"]