C compiler with embedded metalanguage.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

25 行
271 B

@import("parsimonyLibrary/fake-static-classes.mc")
typedef long long int_t;
typedef long double flt_t;
@beginObject()
struct Integer {
int_t i;
};
struct Float {
flt_t _value;
};
struct String {
char *value;
};
struct Symbol {
char *name;
};
@endObject