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)
- Host: GitHub
- URL: https://github.com/hazzik/go-words
- Owner: hazzik
- License: mit
- Created: 2022-09-10T13:49:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-20T13:39:29.000Z (3 months ago)
- Last Synced: 2025-02-20T14:31:57.656Z (3 months ago)
- Topics: go, golang, number-to-words
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Number to Words for Go (Golang)
[](https://github.com/hazzik/go-words/actions/workflows/go.yml)
[](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 mainimport (
"fmt""github.com/hazzik/go-words"
)func main() {
// prints "one hundred eleven"
fmt.Printf("%q", words.FromInt64(111))
}
```