#ifndef TYPE_H #define TYPE_H #include enum class Type { BOOL, INT, STRING, VOID }; std::string typeToString(Type type); #endif // TYPE_H