ChannelsCPP
ChannelsCPP copied to clipboard
C++ implementation of the Go (GoLang) Channel and Select structure
Thanks for this nice project! I just found a small typo when reading the README.
Environment ```bash OS:Windows WSL(Ubuntu20) ➜ build git:(master) ✗ g++ --version g++ (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 ``` I build the project by CMake. Here is my command. ```bash ➜ ChannelsCPP git:(master) ✗...
```cpp int main() { Chan intChan; thread t1 = thread([&]() { for (int i = 0; i < 10; ++i) { intChan