Programming with Go

Fyne is built using the Go programming language. We chose this as it’s an easy to learn language that can build applications for many different operating systems.

All applications built using Fyne also use Go - if it is not familiar to you we recommend following the Tour of Go.

As defined on their website :
“Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.”

It is a statically typed, compiled programming language designed at Google.

Example Code

            
1
2
3
4
5
6
7
package main

import "fmt"

func main() {
	fmt.Println("Hello, Fyne Tour!")
}