@ -0,0 +1,2 @@
#include <table.h>
@ -0,0 +1,14 @@
#include <stdio.h>
#include <stdbool.h>
enum enumVarType {INT, FLOAT, CHAR, STRING};
struct symbol {
char* name;
bool init;
enumVarType varType;
int offset;
int deep;
};