C compiler with embedded metalanguage.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

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