Go: Introduction
Start learning Go with a quick overview and Hello World.
Go — Introduction
Overview
Go is a simple compiled language designed for fast servers and tooling.
Hello World
package main
import "fmt"
func main(){
fmt.Println("Hello, World!")
}
What you'll learn
- How to run Go
- Basic syntax style
- Next steps (lessons & references)
Next
Open the Syntax & Cheat Sheet page for this language.