Goroutines
A goroutine is a lightweight thread of execution managed by the Go runtime. To start a new goroutine we use the go keyword
go f(x, y, z)
The evaluation of f, x, y, and z happens in the current goroutine and the execution of f happens in the new goro...
hashnode.king-11.dev4 min read