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.
 
 
 

21 lines
326 B

@{
saved = `initializer (1,2,"string",21<<1);
cons = `constant 2;
two = `integer 2;
nil;
}
@{
print("6 outputs : \n");
nil;
}
@{
a = `constant 10;
nil;
}
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;