lambda-calc-1/value/lazy/struct.h
2025-01-13 20:36:07 -06:00

14 lines
185 B
C

#include "../struct.h"
struct lazy_value
{
struct value super;
struct environment* environment;
struct expression* expression;
struct value* value;
};