Skip to content

Instantly share code, notes, and snippets.

@LaBlazer
Last active December 5, 2018 13:33
Show Gist options
  • Save LaBlazer/503e02f20ce60d3bf51810cb3ccecda8 to your computer and use it in GitHub Desktop.
Save LaBlazer/503e02f20ce60d3bf51810cb3ccecda8 to your computer and use it in GitHub Desktop.
Default progtest cpp file
#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