Go

Go is a statically typed, compiled language designed at Google for simplicity and productivity. It compiles to a single binary with no dependencies, starts up instantly, and handles concurrency through goroutines and channels rather than threads and locks. The standard library covers HTTP servers, JSON, crypto, testing, and more - most Go projects need few external dependencies.

Overview

  • What: Compiled language with garbage collection, structural typing, and built-in concurrency
  • Install: go.dev/dl or brew install go
  • Init: go mod init github.com/you/project
  • Build: go build (produces a single static binary)
  • Run: go run main.go
  • Test: go test ./...
  • Use cases: APIs, CLIs, cloud infrastructure (Docker, Kubernetes, Terraform), DevOps tooling

Contents

Resources