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

class Runtime {
    private:
        std::vector<Value> m_values;
    public:
        Runtime();
        void run(std::vector<Token>& tokens);
};