C compiler with embedded metalanguage.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
@{
|
|
saved = `initializer (1,2,"string",21<<1);
|
|
cons = `constant 2;
|
|
two = `integer 2;
|
|
@@.append(`declaration char *test = "foo";);
|
|
@@;
|
|
}
|
|
@(print("6 outputs : \n"))
|
|
@{a = `constant 10;}
|
|
char t = @(`constant '@a');
|
|
int i = @cons;
|
|
int q = @(`constant 10);
|
|
int k = @(`initializer (1,2,"stringy thingy",21<<1));
|
|
int i = @saved;
|
|
int w = @a;
|