C compiler with embedded metalanguage.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

16 wiersze
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;