C compiler with embedded metalanguage.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

16 rindas
265 B

@{import("../src/parsimonyLibrary/boot.mc");}
@{
l = {};
append(l, `declaration int a = 0;);
a = (`declaration int b = 0;);
append(l, a);
if (1) {
append(l, `declaration int c = 0;);
} else {
append(l, `declaration int c = 1;);
}
l;
};
@a;