fork download
  1. #include <iostream>
  2. using namespace std;
  3. #define PAINT_LOG_ENABLED true
  4.  
  5. #if PAINT_LOG_ENABLED == true
  6.  
  7. #define PAINT_LOG_EXTENSIVELY true
  8.  
  9. #if PAINT_LOG_EXTENSIVELY == true
  10. #define PAINT_LOG_FILE_NAME "paint-log-ex.log"
  11. #else
  12. #define PAINT_LOG_FILE_NAME "paint-log.log"
  13. #endif
  14.  
  15. #endif
  16. int main(void) {
  17. cout << PAINT_LOG_FILE_NAME;
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
paint-log-ex.log