Number to Words for Go (Golang) Sponsorship If you like the library please consider supporting my work. Installation go get github.com/hazzik/go-words Usage package main import ( "fmt" "github.com/hazzik/go-words" ) func main() { // prints "one hundred eleven" fmt.Printf("%q", words.FromInt64(111)) }