Files
go/tvtest/tvtest.go
Thomas Sindt 2ecab6c3ed tview test
2026-02-27 21:51:47 +01:00

13 lines
221 B
Go

package main
import (
"github.com/rivo/tview"
)
func main() {
box := tview.NewBox().SetBorder(true).SetTitle("Hello, world!")
if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
panic(err)
}
}