Interpreted Language

How would one make an interpreted language in c++?
I have made one in c# but would like to increase its functionality or make a compiled language in c++. I know some c++ but not much. Please help.
If you made it in C#, you know what it entails: A string parser, expression parser, expression evaluator, etc. Port each routine to C++. But I must warn you that you'll fail if you don't know the language. First learn C++, then try to port.

Besides knowing the language, the routines are pretty much equivalent. You need the same things in C++ that you need in C#. If you used some .Net classes to help you out with some of the functionality, you'll have to search for replacements in C++ or code your own.
Topic archived. No new replies allowed.