Bob/headers/BobStdLib.h
Bobby Lucero 17c15e5bad Various changes
Arrays, loops, ternary, and other major features. Check doc
2025-08-06 21:42:09 -04:00

13 lines
281 B
C++

#pragma once
#include "Value.h"
#include "Environment.h"
#include <memory>
class Interpreter;
class ErrorReporter;
class BobStdLib {
public:
static void addToEnvironment(std::shared_ptr<Environment> env, Interpreter& interpreter, ErrorReporter* errorReporter = nullptr);
};