Projekt

Obecné

Profil

Stáhnout (217 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
#include <chrono>
2
#include <thread>
3

    
4
static constexpr int LOOP_DELAY_S = 10;
5

    
6
int main() {
7
    while (true) {
8
        std::this_thread::sleep_for(std::chrono::milliseconds(LOOP_DELAY_S * 1000));
9
    }
10
    return 0;
11
}
(2-2/2)