Go by Example :Goroutines. A gorountine is a lightweight thread of execution . Suppose we have a function call f(s). Here’s how we’d call that in the usual way ,running it synchronously. To invoke this function in a goroutine, use go f(s). This new goroutine will execute concurrently with the calling one. You can also […]