#include #include int main() { std::jthread t([] { std::cout << "Hello" << std::endl; }); return 0; }