brintos

brintos / llvm-project-archived public Read only

0
0
Text · 102 B · 3118d8f Raw
7 lines · cpp
1#include <thread>2 3int main() {4  std::this_thread::sleep_for(std::chrono::minutes(1));5  return 0;6}7