14 lines
190 B
C
14 lines
190 B
C
|
|
#include "../struct.h"
|
|
|
|
struct lambda_value
|
|
{
|
|
struct value super;
|
|
|
|
struct environment* environment;
|
|
|
|
struct string* variable_name;
|
|
|
|
struct expression* body;
|
|
};
|
|
|