A simple scripting language in C++
Ferenc Szontágh
2025-04-17 36ec04c00fa540fcee0f2cff1f7b81dd8a98101a
src/Interpreter/OperationContainer.hpp
@@ -117,7 +117,7 @@
    auto end() const { return _operations.end(); }
    static std::string dump()  {
        std::string result = "";
        std::string result;
        for (const auto & [_, table] : Operations::Container::instance()->_operations) {
            result += "Namespace: " + _ + "\n";
            for (const auto & operation : table) {