Skip to content

Instantly share code, notes, and snippets.

@alediaferia
Created December 31, 2017 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alediaferia/63e8a97e60d1c430f6ea4920f65fcad7 to your computer and use it in GitHub Desktop.
Save alediaferia/63e8a97e60d1c430f6ea4920f65fcad7 to your computer and use it in GitHub Desktop.
A Gogoa Example
package main
import (
"github.com/alediaferia/gogoa"
)
func main() {
app := gogoa.SharedApplication()
window := gogoa.NewWindow(0, 0, 200, 200)
window.SetTitle("Gogoga!")
window.MakeKeyAndOrderFront()
app.Run()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment