2 lines
84 B
C++
2 lines
84 B
C++
#define THE(x) the_ ## x
|
|
int THE(answer) = 42; // THE(answer) expands to the_answer
|
#define THE(x) the_ ## x
|
|
int THE(answer) = 42; // THE(answer) expands to the_answer
|