go run goroutines-with-waitgroups/main.go
go run race-condition-mutex/main.go
ab -n 10000 -c 100 http://localhost:8080/mutex
curl http://localhost:8080/mutex
go run race-condition-atomic/main.go
ab -n 10000 -c 100 http://localhost:8080/atomic
curl http://localhost:8080/atomic
go run range-with-channels/main.go
go run range-with-waitgroups/main.go
go run channel-directions/main.go
go run loadbalancer/main.go
go run select-with-channels/main.go
go run channel-with-buffers/main.go