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

14 lines
219 B
C

#ifndef STRUCT_USER_LAMBDA_VALUE
#define STRUCT_USER_LAMBDA_VALUE
struct user_lambda_value
{
struct value* environment;
struct value* parameters; // list of names;
struct value* body;
};
#endif