: -a-union-inside-a-struct , . , , , .
:
typedef enum {BOOLEAN, FIXNUM} object_type;
typedef struct object {
object_type type;
union {
struct {
char value;
} boolean;
struct {
long value;
} fixnum;
} data;
} object;
object ( ), . , - . , , fixnums, .
, parallelism. v0.6 pair, .