C++: Conceptual problem in designing an intepreter
- by sub
I'm programming an interpreter for an experimental programming language (educational, fun,...)
So far, everything went well (Tokenizer & Parser), but I'm getting a huge problem with some of the data structures in the part that actually runs the tokenized and parsed code.
My programming language basically has only two types, int and string, and…