Reorganizing

This commit is contained in:
Ricardo
2023-01-22 20:04:28 +00:00
parent 43ed231879
commit 80a1d916e1
9 changed files with 636 additions and 0 deletions

12
go/main.go Normal file
View File

@@ -0,0 +1,12 @@
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)
}
}