This module contains a function that allows you to get words from numbers.
toWords : Basics.Float -> Result NumberToWords.Error.NTWError String
Convert number into words.
toWords 0 == Ok "zero"
toWords 1.9 == Ok "two"
toWords 2222 == Ok "two thousand, two hundred twenty-two"
toWords NaN == Err NaNOrInfinty
toWords -19 == Ok "minus nineteen"