This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<glad/glad.h> | |
#include<glfw/glfw3.h> | |
struct vec3 | |
{ | |
float x, y, z; | |
}; | |
int main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include<iostream> | |
#include<vector> | |
#include<stack> | |
class Interpreter | |
{ | |
public: | |
static void Run(std::string input) |