Skip to content

Instantly share code, notes, and snippets.

@Ben-0-mad
Created August 20, 2021 23:33
Show Gist options
  • Save Ben-0-mad/d8f30ea74b24c89e22f4e424cb1a4d93 to your computer and use it in GitHub Desktop.
Save Ben-0-mad/d8f30ea74b24c89e22f4e424cb1a4d93 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <chrono>
#include <thread>
int main() {
using namespace std::literals::chrono_literals;
std::cout << "hi ";
std::this_thread::sleep_for(2s);
std::cout << "bye";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment