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

28 行
390 B

@{
(`declaration int a = 5;);
a = (`declaration int a = 5;);
@(`declaration int a = 5;);
};
@a;
@(t = `integer 2)
@(`declaration int abc = @t;);
int main() {
@a;
int b = 0;
@{
@(`declaration int c = 0;);
x = (`declaration int d = 5;);
@x;
if (1) {
if (1) {
x = (`declaration int d = 5;);
@x;
}
}
};
int e = 0;
return 0;
}