Ask HN: Concurrency in Go vs. C/C++ I know in C++ multithreaded programs share memory as to way to track resource access. However in Go this is done through channels. I'm trying to explore some subtle differences writing concurrent Go code the C/C++ way. My aim to find some bad practices in the process and figure out the best way to fix them. I'm currrently out of ideas. Thanks, |