c-preprocessor/_test/inputs/test15.in

9 lines
77 B
Plaintext
Raw Normal View History

2021-03-21 14:09:25 +00:00
#define TEST 1
int main() {
#if TEST
printf("Yes!\n");
#endif
return 0;
}