An open API service indexing awesome lists of open source software.

https://github.com/hazzik/go-words

Number to Words for Go (Golang)
https://github.com/hazzik/go-words

go golang number-to-words

Last synced: 2 months ago
JSON representation

Number to Words for Go (Golang)

Awesome Lists containing this project

README

        

# Number to Words for Go (Golang)

[![Go](https://github.com/hazzik/go-words/actions/workflows/go.yml/badge.svg?branch=master)](https://github.com/hazzik/go-words/actions/workflows/go.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/hazzik/go-words)](https://goreportcard.com/report/github.com/hazzik/go-words)

## Sponsorship

If you like the library please consider [supporting my work](https://github.com/sponsors/hazzik).

## Installation

```shell
go get github.com/hazzik/go-words
```

## Usage

```go
package main

import (
"fmt"

"github.com/hazzik/go-words"
)

func main() {
// prints "one hundred eleven"
fmt.Printf("%q", words.FromInt64(111))
}
```