Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 681 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 681 Bytes

Number to Words for Go (Golang)

Go Go Report Card

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))
}