Files
concurrency-in-action/ch1/hello.cpp
2018-10-18 00:40:34 -05:00

18 lines
222 B
C++

#include <iostream>
#include <thread>
void
hello()
{
std::cout << "Hello Concurrent World\n";
}
int
main()
{
// boost::thread t([]()
std::thread t([]() { std::cout << "Hello Concurrent World\n"; });
t.join();
}