00df61d
1
2
3
4
5
6
7
8
9
10
11
#include <thread> int main() { std::thread t([]{ printf("in thread\n"); }); t.join(); printf("done\n"); return 0; }