package
0.0.0-20241101072159-b6832a90a376
Repository: https://github.com/pranitrout07/practice-golang.git
Documentation: pkg.go.dev

# README

Concurreny

This means to do multiple tasks almost at the same time . (but not at the same time , it seems like same time)

waitgroup : wg.Add(n) --> Here n is the number of go routines

wg.Wait() --> Does not allow to complete the process

wg.Done() --> After each task is complete this should be written to mark it as complete

Mutex are used to lock any critical resource .

Channels are a way that allows the go routines to talk with each other.

# Packages

No description provided by the author
No description provided by the author
No description provided by the author