Created
November 16, 2021 13:57
-
-
Save whippingdot/b82fa8543a230796e63f8360c320adc9 to your computer and use it in GitHub Desktop.
This is a gist I made to make coding C++ easier. You don't have to write 'std::cout' or 'std::cin' each time with this! Also, you can add more '#define's if necessary.
This file contains 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
#include <iostream> | |
#include <string> | |
#define cout std::cout | |
#define cin std::cin | |
typedef std::string string; | |
int main() | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment