c-preprocessor/_test/inputs/test19.in

11 lines
105 B
Plaintext
Raw Normal View History

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