A high-performance language designed to be used for a website’s backend.

Concepts

Guides

Initialize Module

go mod init mymodule

Boilerplate

package main
import (
	"fmt"
)
 
func main(){
	fmt.Println("I hope i get the job!");
}

Running

go run main.go