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.
 
 
 

17 lines
282 B

@{
saved = `expression (1,2,"string",21<<1);
first = `constant 2;
nil;
}
@{
second = `constant 10;
nil;
}
char t = @(`constant @second);
int i = @first;
int q = @(`constant 10);
int k = @(`expression (1,2,"stringy thingy",21<<1));
int i = @saved;
int w = @second;