Skip to content

Instantly share code, notes, and snippets.

@whippingdot
Created November 16, 2021 13:57
Show Gist options
  • Save whippingdot/b82fa8543a230796e63f8360c320adc9 to your computer and use it in GitHub Desktop.
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.
#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