langcmp/cpp/sleeptest.cpp

8 lines
125 B
C++
Raw Permalink Normal View History

2023-08-24 08:50:56 +02:00
#include <thread>
#include <chrono>
int main() {
std::this_thread::sleep_for(std::chrono::seconds(60));
return 0;
}