12 lines
109 B
C
12 lines
109 B
C
|
|
struct string;
|
|
|
|
struct value;
|
|
|
|
struct variable
|
|
{
|
|
struct string* name;
|
|
|
|
struct value* value;
|
|
};
|
|
|