#ifndef ARZU_INTERPRETER_MEMORY #define ARZU_INTERPRETER_MEMORY #include "MemoryData.h" #include #include using namespace std; struct Memory { list vars; stack work; stack scopeVars; }; #endif