DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 12.2.0-2 / yo / threading / examples / terminate.cc
12345678910111213
#include <iostream> #include <thread> void hello() { while (true) std::cout << "hello world!\n"; } int main() { std::thread hi(hello); }