Last active
December 5, 2018 13:33
-
-
Save LaBlazer/503e02f20ce60d3bf51810cb3ccecda8 to your computer and use it in GitHub Desktop.
Default progtest cpp file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __PROGTEST__ | |
#define pause() system("pause"); | |
#else | |
#define pause(); | |
#endif | |
#include <iostream> | |
int main() { | |
std::cout << "test" << std::endl; | |
pause(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment