14 lines
219 B
C
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
|