Wordify returns the Spanish word for a given integer number ranging from -999_999_999_999 up to 999_999_999_999.
Invoking wordify
would involve the following piece of code:
func main() {
number := 21_324
inWords := wordify.Int(number) // returns `veintiún mil trescientos veinticuatro`
}