fastinahurry/test.cc
2025-07-27 21:38:01 -06:00

7 lines
130 B
C++

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