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