Go (programming language)

Go, also known as Golang, is a statically-typed concurrent programming language made by an engineer team at Google.

Example

Here is a hello world program in Go.

package main
// Import fmt library through the standard library.
import "fmt"

// Define entry point.
func main() {
    // Write to output.
    fmt.println("Hello world!")
}

References

Uses material from the Wikipedia article Go (programming language), released under the CC BY-SA 4.0 license.