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

11 lines
123 B
C

struct environment
{
struct environment* fallback;
struct avl_tree_t* tree;
unsigned refcount;
};