c-preprocessor/_test/inputs/test15.in

9 lines
77 B
Plaintext

#define TEST 1
int main() {
#if TEST
printf("Yes!\n");
#endif
return 0;
}