13 lines
278 B
C++
13 lines
278 B
C++
#pragma once
|
|
|
|
#include "Value.h"
|
|
#include "Environment.h"
|
|
#include <memory>
|
|
|
|
class Interpreter;
|
|
class ErrorReporter;
|
|
|
|
class StdLib {
|
|
public:
|
|
static void addToEnvironment(std::shared_ptr<Environment> env, Interpreter& interpreter, ErrorReporter* errorReporter = nullptr);
|
|
};
|