Skip to content

Instantly share code, notes, and snippets.

@Rapptz
Created September 22, 2015 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rapptz/ab057e20f735a4c370aa to your computer and use it in GitHub Desktop.
Save Rapptz/ab057e20f735a4c370aa to your computer and use it in GitHub Desktop.
#include <thread>
#include <chrono>
int main() {
while(true) {
std::this_thread::sleep_for(std::chrono::seconds(60));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment