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.
 
 
 

19 regels
158 B

int
main()
{
int x;
x = 0;
x += 2;
x += 2;
if (x != 4)
return 1;
x -= 1;
if (x != 3)
return 2;
x *= 2;
if (x != 6)
return 3;
return 0;
}