#ifndef INTERPRETER_H #define INTERPRETER_H #include #include #include "types.h" #include "memory.h" using namespace std; /* Evaluates the AST, returning the latest calulated value */ EvalResult eval(Node &ast, Memory& memory); #endif