Files
go/tvtest/tvtest.go
Thomas Sindt 9ac08bb6f1 tview test2
2026-02-27 22:01:31 +01:00

15 lines
274 B
Go

package main
// https://github.com/rivo/tview?tab=readme-ov-file
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)
}
}