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

14 lines
190 B
C

#include "../struct.h"
struct lambda_value
{
struct value super;
struct environment* environment;
struct string* variable_name;
struct expression* body;
};