--

Go Routine

In Golang main function is treated as light weight goroutine. If you created any go Routine. It will create a new Go Routine along with main routine.

GO Routine will work asynchronously but make it work synchronly we will use
1. Wait Group

2. Mutex

--

--