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.
 
 
 

22 lines
296 B

@{
num = `integer 21;
// print(num.text);
// print("\n");
test = `initializer 2 * 10;
}
int x = @{`initializer 2 * @,num;};
int main() {
int i = @(`initializer 2 * @,num);
int y = @,test;
int a = @{
num = `integer 21;
test = 2;
`initializer @(num);
};
return 0;
}