Files
Programming-POSIX-Threads/src/ch02/hello_cpp.cpp
2018-10-18 14:55:48 -05:00

17 lines
163 B
C++

#include <iostream>
#include <thread>
void
hello()
{
std::cout << "Hello World\n";
}
int
main(int argc, char* argv[])
{
std::thread t(hello);
t.join();
}