79437436

Date: 2025-02-13 18:48:28
Score: 1
Natty:
Report link

My way of sectioning (especially when among declarations)

#if true
...
#endif

More advanced, as needed:

#define TESTING true  //here you can easily switch status of your code
...
...
#if TESTING
... // your commands for testing only
#endif

#if !TESTING
... // production mode code
#endif
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arpad Prp