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