Files
interpreter-cpp/src/object/integers.cpp
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

10 lines
166 B
C++

#include "integers.hpp"
#include <string>
namespace object {
std::string integer::inspect() {
return std::to_string(value);
}
} // namespace object