Course · 6 lessons ~60 hr Intermediate

Go Foundations

Go Foundations covers: The Go Programming Language, Go in Action, Data Structures & Algorithms in Go. Learn Go's type system, structs, interfaces, error handling, and tooling. Write idiomatic Go code. | Ruby/Rails | Go | |-----------|-----| | class Dog < Animal | No inheritance. Embed structs, implement interfaces. | | rescue StandardError => e | if err != nil { return err } everywhere. Verbose but explicit. | | attr_accessor :name | Exported (capital) vs unexported (lowercase) fields. | | include Enumerable | Structural interfaces — implement the methods, that's it. No implements keyword. | | Gemfile / bundle | go.mod / go get. Dependency management is built into the language. | | irb / pry | go run main.go. No REPL (use Go Playground online). | | Duck typing at runtime | Duck typing at compile time (structural interfaces). |

reading · we frame, you read MIT or the canonical taught · we author, no canonical fits ↺ spirals back to earlier lessons
Course locked

Complete Why Systems Languages? first.

This course unlocks once you've finished its prerequisite. Open prerequisite →

6 lessons. Read in order; spiral back when you need to. By the end you'll have used the core ideas twice — once on the abstract, once on something you'll meet at work next week.