C compiler with embedded metalanguage.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

36 行
523 B

@{import("boot.mc");}
@{
l = createList();
append(l, `declaration int a = 5;);
a = (`declaration int a = 5;);
append(l, `declaration int a = 5;);
l;
};
@a;
@{
t = `integer 2;
nil;
}
@(`declaration int abc = @t;);
int main() {
@a;
int b = 0;
@{
l = createList();
append(l, `declaration int c = 0;);
x = (`declaration int d = 5;);
append(l, x);
if (1) {
if (1) {
x = (`declaration int d = 5;);
append(l, x);
}
}
l;
};
int e = 0;
return 0;
}