lisp-take-1/value/environment/struct.h
2024-11-28 18:36:25 -06:00

14 lines
192 B
C

#ifndef STRUCT_ENVIRONMENT_VALUE
#define STRUCT_ENVIRONMENT_VALUE
struct environment_value
{
struct value* fallback;
struct gc* gc;
struct avl_tree_t* tree;
};
#endif