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

GO Reference: Functions

Quick reference for Functions.

Read time: 1 min Words: 14
My Progress

GO Reference — Functions

Quick summary of Functions with syntax and example.

Syntax

package main

Example

package main
import "fmt"

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