A high-performance language designed to be used for a website’s backend.
Concepts
- Go Functions
- Go Variables
- Go Constants
- Go Datatypes
- Go Arrays
- Go Slices
- Go Libraries
- Go copy
- Go len
- Go cap
- Go Conditional Statements
- Go Switch Statement
- Go For Loop
- Go Struct
- Go Map
- Go HTTP Server
- Go JSON
- Go CORS
- Goroutine
- Go Log
- Go OS
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