Basic arithmetic and jump labels
This commit is contained in:
14
include/interpret/interpreter.hpp
Normal file
14
include/interpret/interpreter.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include <interpret/code.hpp>
|
||||
#include <memory>
|
||||
#include <token/token.hpp>
|
||||
#include <vector>
|
||||
|
||||
namespace Interpret
|
||||
{
|
||||
class Interpreter
|
||||
{
|
||||
public:
|
||||
void Interpret(std::vector<Token::Token> const & tokens, Code & code);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user