Goroutines
This lesson introduces the concept of goroutines, their definition, and gives an example.
We'll cover the following...
We'll cover the following...
Definition
A goroutine is a lightweight thread managed by the Go runtime. Goroutines can be functions or methods that run concurrently with other functions or methods
go f(x, y, z)
starts a new goroutine running:
f(x, y, z)
The evaluation of f, x, y ...