Files
interpreter-cpp/src/object/object.hpp
Karma Riuk d1dd5f9dab made our wrapper objects for all of our primitve
datatypes: ints, bools and null
2025-07-19 13:04:30 +02:00

14 lines
195 B
C++

#pragma once
#include "type.hpp"
#include <string>
namespace object {
struct object {
::object::type type;
virtual std::string inspect() = 0;
};
} // namespace object