brintos

brintos / llvm-project-archived public Read only

0
0
Text · 282 B · d1b6116 Raw
17 lines · cpp
1#include <chrono>2#include <stdio.h>3#include <thread>4 5 6int main(int argc, char const *argv[])7{8    static bool done = false;9    while (!done)10    {11      std::this_thread::sleep_for(std::chrono::milliseconds{100});12    }13    printf("Set a breakpoint here.\n");14    return 0;15}16 17