Go Routines
Go Routines help us to handling multiple tasks at the same time (concurrency)
It is lightweight thread, Managed by go Runtime.
Go Routine is cheap in terms of memory and Resource.
How to create Goroutine
We can start a Goroutine by Simple using g...
epitomeofcode.hashnode.dev3 min read