7 lines
130 B
C++
7 lines
130 B
C++
#include <thread>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
std::jthread t([] { std::cout << "Hello" << std::endl; });
|
|
return 0;
|
|
} |