Registry /
cli / jesseduffield-termbox-go
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
termbox
✓ github.com/jesseduffield/termbox-go
Initialize termbox and draw a character
package main
import (
"github.com/jesseduffield/termbox-go"
)
func main() {
err := termbox.Init()
if err != nil {
panic(err)
}
defer termbox.Close()
termbox.SetCell(0, 0, 'H', termbox.ColorDefault, termbox.ColorDefault)
termbox.Flush()
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
0.0.0-20200823212418-a2289ed6aafelatest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.