C compiler with embedded metalanguage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 regels
145 B

#ifdef FOO
XXX
#ifdef BAR
XXX
#endif
XXX
#endif
#define FOO 1
#ifdef FOO
#ifdef FOO
int x = 0;
#endif
int
main()
{
return x;
}
#endif