1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
numericword/README.md

20 lines
321 B
Markdown

# Numeric Word
Simple library to convert a number from int64 to a word representation.
Currently supports any int64 value.
## Installation
```
$ go get github.com/tgrosinger/numericword
```
## Usage
```
import "github.com/tgrosinger/numericword"
number := int64(12345)
numerString := numericword.ToWord(number)
```