1 #include <thread>
2 
3 int main()
4 {
5   // Wait to be attached.
6   std::this_thread::sleep_for(std::chrono::minutes(1));
7   return 0;
8 }
9