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.
 
 
 

14 rivejä
135 B

int a[3] = {0, 1, 2};
int
main()
{
if (a[0] != 0)
return 1;
if (a[1] != 1)
return 2;
if (a[2] != 2)
return 3;
return 0;
}