DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Go: Introduction

Start learning Go with a quick overview and Hello World.

Read time: 1 min Words: 44
My Progress

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.