Files
LinuxPA/main.go
T
2024-09-28 06:28:54 -05:00

23 lines
314 B
Go

package main
import (
"fmt"
"cogentcore.org/core/core"
"cogentcore.org/core/events"
)
const (
version = "3.0.0-alpha1"
)
func main() {
b := core.NewBody("LinuxPA")
core.NewButton(b).
SetText("This is a test").
OnClick(func(_ events.Event) {
fmt.Println("This is a test")
})
b.RunMainWindow()
}