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.
|
@import("parsimonyLibrary/fake-static-classes.mc")
|
|
|
|
typedef long long int_t;
|
|
typedef long double flt_t;
|
|
|
|
@object("OBJECT")
|
|
|
|
struct Integer {
|
|
int_t i;
|
|
};
|
|
@addObject()
|
|
|
|
struct Float {
|
|
flt_t _value;
|
|
};
|
|
@addObject()
|
|
|
|
struct String {
|
|
char *value;
|
|
};
|
|
@addObject()
|
|
|
|
struct Symbol {
|
|
char *name;
|
|
};
|
|
@addObject()
|
|
|
|
@endObject()
|