DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 10.6.0-1 / 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); }