Files
Sparks-Skraps/go/main.go

13 lines
217 B
Go
Raw Normal View History

2023-01-22 20:04:28 +00:00
package main
import "github.com/rivo/tview"
func main() {
box := tview.NewBox().
SetBorder(true).
SetTitle("Box Demo")
if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
panic(err)
}
}