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;
});
};
}