Name: Anonymous 2015-03-13 3:34
Is this a sane representation for s-expressions?
struct O
{
union {
Cell *o;
char *a;
};
int type;
};
struct Cell
{
O car, cdr;
};