Files
scully/inc/AST/Type.h
2013-06-01 16:22:01 +02:00

11 lines
151 B
C++

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