lambda-calculus/expression/struct.h
2025-01-13 20:36:07 -06:00

10 lines
139 B
C

struct expression_inheritance;
struct expression
{
const struct expression_inheritance* inheritance;
unsigned refcount;
};