Hello, I would like to implement a macro definition feature similar to C++. Here is an example code. Could you please guide me on how to achieve this? ```cpp #define GIsShipping #if GIsShipping then #define Log(...) Log(...) #else #define Log(...) #endif ```