run.h 320 B

1234567891011121314
  1. #ifndef VIRTUALMATH_RUN_H
  2. #define VIRTUALMATH_RUN_H
  3. #include "statement.h"
  4. typedef struct globalInterpreter{
  5. struct VirtualMathValue *base;
  6. struct VirtualMathLinkValue *link_base;
  7. struct VirtualMathHashTable *hash_base;
  8. Statement *statement;
  9. VarList *var_list;
  10. } Inter;
  11. #endif //VIRTUALMATH_RUN_H