>>20
>obfuscation techniques.
If i was obfuscating my own code, how would i work with it? #defines simplify my workflow:
i can change just the define to quickly test many use cases and settings, without touching main code.
without #defines i would have to rewrite code in specific multiple locations, with one define it simplified to changing the #define
and the main code works as expected. Also, why complaining about #define while you're abusing macros in Lisp in ways #define does not even compare?