SimpleHelperTools/cpp/pause.cpp
2024-08-30 11:05:57 -07:00

32 lines
643 B
C++

/*
*
* Pause CPP
* COPYRIGHT 2023 Tara Piccari
*
*
* This file is a part of Pause (https://github.com/zontreck/PauseCpp)
* It is Licensed under the GPL v3.
*
* Please submit any changes or improvements to the Github in the form of a ticket or a pull request.
*
* Thank you.
*
*/
#include <iostream>
#include <string>
#include <stdlib.h>
#include <chrono>
#include <stdio.h>
#include <thread>
using namespace std;
int main(int argc, const char *argv[]) {
cout << "Press enter to continue\r";
cin.ignore();
cout << endl;
return 0;
}