Goroutines

You can get the basics of goroutines in the official Tour of Go: Goroutines.

For a detailed guide on how the Go scheduler works, check out this in-depth resource in Russian: Планировщик Go — самый подробный гайд простым языком.

Source code: runtime/proc.go on go.dev.

Examples: Goroutines on Go by Example.