Concurrency in Go
concurrency, routines, CSP and channels
May 19, 20233 min read89

Search for a command to run...
Articles tagged with #go
concurrency, routines, CSP and channels

Ahh ! Why does Go Not support Enums . Well There is a workaround you can use to make Enum like setup in Go. Well Go lang support only string and int as const One of the ways is to do it this way. Create a Type for you Enum and what all you want with ...
