14 lines
185 B
C
14 lines
185 B
C
|
|
#include "../struct.h"
|
|
|
|
struct lazy_value
|
|
{
|
|
struct value super;
|
|
|
|
struct environment* environment;
|
|
|
|
struct expression* expression;
|
|
|
|
struct value* value;
|
|
};
|
|
|