blueloveTH 85a9588459 ...
2023-07-09 16:10:15 +08:00

18 lines
246 B
C++

#pragma once
#include "compiler.h"
#include "vm.h"
namespace pkpy{
class REPL {
protected:
int need_more_lines = 0;
std::string buffer;
VM* vm;
public:
REPL(VM* vm);
bool input(std::string line);
};
} // namespace pkpy