aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.h
blob: cdecd8446e22a40ceffcfd1205300efa00969125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "value.h"
#include <vector>
#include "token.h"

class Runtime {
    private:
        std::vector<Value> m_values;
        bool runCommand(const Token& token);

    public:
        Runtime();
        void run(std::vector<Token>& tokens);
};