Goroutines
This lesson introduces the concept of goroutines, their definition, and gives an example.
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
Press + to interact
go f(x, y, z)
starts a new goroutine running:
Press + to interact
f(x, y, z)
The evaluation of f
, x
, y
...