Skip to content

hazzik/go-words

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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