Programming languages
Go
Also known as Golang, it is a statically typed, compiled programming language designed for simplicity, efficiency, and reliability, particularly for networked services and large-scale software infrastructure.
Share this starting point
code.study/go
- Created by
- Robert Griesemer , Rob Pike , Ken Thompson
- First appeared
- 2009
- Official resource
- Visit the main website
Your first program
Hello, World!
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}