Skip to main content

Go language

Go, or Golang, is an open source programming language. It's statically typed and produces compiled machine code binaries.More..


History:
Go is a procedural programming language. It was developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google but launched in 2009 as a n open-source programming language.
Robert Griesemer

Example:


package main

import "fmt"

func main() {
    fmt.Println("hello world")
}