Created
October 12, 2023 19:29
-
-
Save bond15/d178d962d2e018e245a15d2a9f9c7385 to your computer and use it in GitHub Desktop.
Nice C++ printing
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
#define DEBUG | |
#ifdef DEBUG | |
# define PRINT(x) errs() << x; | |
#else | |
# define PRINT(x) {}; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment