32 lines
679 B
C++
32 lines
679 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.get();
|
|
cout << "\r \r" << endl;
|
|
return 0;
|
|
}
|