12 lines
166 B
C
12 lines
166 B
C
|
|
#include "../struct.h"
|
|
|
|
struct assignment_statement
|
|
{
|
|
struct statement super;
|
|
|
|
struct string* variable_name;
|
|
|
|
struct expression* expression;
|
|
};
|
|
|