package
0.0.0-20211127175118-db3ee8db598d
Repository: https://github.com/saraginov/learn-go.git
Documentation: pkg.go.dev

# README

Goroutines

A goroutine is a lightweight thread of execution.

The output of 2 or more parallel goroutine(s) may be interleaved, because goroutines are being run concurrently by the Go runtime.