Concurrency in Go
Go Routines
Go routine is a light weighted thread of execution.
Routines differ from OS threads because the Go Scheduler can multiplex multiple go routines into a single OS thread.
They are a way to run a function concurrently (or parallelly ) with t...
prakharporwal.hashnode.dev3 min read