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

16 行
267 B

@{
@(`declaration int a = 5;);
@(`declaration int b = 2;);
}
int main() {
@{
a = (`declaration int a = 2;);
@(`declaration int c = 5;);
b = 5;
@(`declaration int d = 2;);
@(`statement for(int i =0; i < 10; i++) {
a = 2;
});
};
}