Conversation

Finally implemented sum types in pure C99, after a year of experimentation: datatype( BinaryTree, (Leaf, int), (Node, struct BinaryTree *, int, struct BinaryTree *) );
2
2