C compiler with embedded metalanguage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
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
*/