16 lines
166 B
C++
16 lines
166 B
C++
#include <iostream>
|
|
#include <thread>
|
|
|
|
void
|
|
hello()
|
|
{
|
|
std::cout << "Hello Concurrent World\n";
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
std::thread t(hello);
|
|
t.join();
|
|
}
|