https://github.com/bengadbois/flippytext
Print animated text to the terminal
https://github.com/bengadbois/flippytext
animation command-line go golang stdout
Last synced: 9 months ago
JSON representation
Print animated text to the terminal
- Host: GitHub
- URL: https://github.com/bengadbois/flippytext
- Owner: bengadbois
- License: mit
- Created: 2017-04-12T03:49:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-31T01:48:16.000Z (over 8 years ago)
- Last Synced: 2024-06-19T16:33:06.929Z (almost 2 years ago)
- Topics: animation, command-line, go, golang, stdout
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FlippyText [](https://travis-ci.org/bengadbois/flippytext) [](https://coveralls.io/github/bengadbois/flippytext?branch=master) [](https://godoc.org/github.com/bengadbois/flippytext)
FlippyText is a Go library for printing animated text one character at a time.

## Install
```
go get github.com/bengadbois/flippytext
```
## Example
```go
import "github.com/bengadbois/flippytext"
func main() {
flippytext.New().Write("hello world")
}
```