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.
 
 
 

11 lines
131 B

#define A 3
#define FOO(X,Y,Z) X + Y + Z
#define SEMI ;
int
main()
{
if(FOO(1, 2, A) != 6)
return 1 SEMI
return FOO(0,0,0);
}