summaryrefslogtreecommitdiff
path: root/cmds/debug/helloworld.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/debug/helloworld.go')
-rw-r--r--cmds/debug/helloworld.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/cmds/debug/helloworld.go b/cmds/debug/helloworld.go
new file mode 100644
index 0000000..d0998bf
--- /dev/null
+++ b/cmds/debug/helloworld.go
@@ -0,0 +1,20 @@
+// A simple helloworld window
+package main
+
+import (
+ "log"
+ "git.wit.org/wit/gui"
+)
+
+// This creates a window
+func helloworld() {
+ var w *gui.Node
+ gui.Config.Title = "helloworld golang wit/gui window"
+ gui.Config.Width = 400
+ gui.Config.Height = 100
+
+ w = gui.NewWindow()
+ w.NewButton("hello", func () {
+ log.Println("world")
+ })
+}