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

30 行
271 B

;
;
;
// comment
;
/* Test Int */
3;
52;
13;
;
/* Test Float */
13.7;
42.0;
1e+0;
;
/* Test Char */
'salut';
'bonjour tout le monde';
'je m appelle Nathan et je suis né en 1998';
'enchanté !';
;
/* Test id */
identifier;
newId;
id_3;
;
/* multi
* line
* comment
*/