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

GO Reference: Go Introduction

Quick reference for Go Introduction.

Read time: 1 min • Words: 16
My Progress

GO Reference — Go Introduction

Quick summary of Go Introduction with syntax and example.

Syntax

package main

Example

package main
import "fmt"

func main(){
  fmt.Println("Hello Go")
}